From 339e914e82768fb948e65092440d284851b72d6e Mon Sep 17 00:00:00 2001 From: Gerardo Marx Date: Tue, 2 Jun 2026 21:31:26 -0600 Subject: [PATCH] Button exercise: testing component via boostrap --- src/App.tsx | 5 +++-- src/components/Button.tsx | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 src/components/Button.tsx 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 ( + + ) +}