From 7b344536873cd1f3a81a7be5361b21ea9b9942a0 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 16 Jan 2026 12:52:49 +0000 Subject: [PATCH] Add src/App.tsx --- src/App.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/App.tsx diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..c62ad9b --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,13 @@ +import React from 'react'; +import HomePage from './components/HomePage'; +import './App.css'; + +function App() { + return ( +
+ +
+ ); +} + +export default App;