Skip to content

Commit

Permalink
Add beginner file with dummy button
Browse files Browse the repository at this point in the history
  • Loading branch information
michellewliang committed Nov 8, 2023
1 parent ab8d1d3 commit 4525ecd
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions frontend/src/pages/beginner.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from "react";
import { URLs } from "../constants";

const Beginner = () => {
return (
<div>
<h1>Michelle's Dummy Button</h1>
<button
style={{
backgroundColor: "#FFB9EF",
padding: "15px 32px",
textAlign: "center",
fontSize: "16px",
}}
disabled
>
Button
</button>
</div>
);
};

export default Beginner;

0 comments on commit 4525ecd

Please sign in to comment.