React инициализация

This commit is contained in:
grinikita
2025-04-14 21:14:49 +03:00
parent 520ad38f8d
commit 9550031481
15 changed files with 369 additions and 242 deletions

16
src/pages/home/index.tsx Normal file
View File

@@ -0,0 +1,16 @@
import React from 'react';
import Header from "../../widgets/header";
import Banner from "./banner";
const HomePage = (): React.ReactElement => {
return (<>
<Header/>
<main>
<Banner/>
</main>
</>
)
}
export default HomePage