From f3f0e64846a824c70be3d8c6a5fcf425c9edbb6d Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 11:38:11 +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..3ff8dac --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,13 @@ +import React from 'react'; +import './App.css'; +import MainPage from './components/MainPage'; + +function App() { + return ( +
+ +
+ ); +} + +export default App; \ No newline at end of file