diff --git a/src/App.tsx b/src/App.tsx index 237212e..2ae4da2 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,10 +1,11 @@ -import Alert from "./components/Alert"; +import { Button } from "./components/Button"; + function App() { return (
- Hello Marx +
); } diff --git a/src/components/Button.tsx b/src/components/Button.tsx new file mode 100644 index 0000000..d0ba658 --- /dev/null +++ b/src/components/Button.tsx @@ -0,0 +1,6 @@ + +export const Button = () => { + return ( + + ) +}