From 5a14c7ac4cd3a9429da0190c818e584a3174a224 Mon Sep 17 00:00:00 2001 From: Khang Duy LAI Date: Wed, 11 Mar 2026 14:49:56 +0100 Subject: [PATCH] feat: integrate all components in App --- src/App.jsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/App.jsx diff --git a/src/App.jsx b/src/App.jsx new file mode 100644 index 0000000..9c8e6ca --- /dev/null +++ b/src/App.jsx @@ -0,0 +1,16 @@ +import BirthdayBanner from './components/BirthdayBanner' +import RoastGallery from './components/RoastGallery' + +function App() { + return ( +
+ + + +
+ ) +} + +export default App