Showing
1 changed file
with
14 additions
and
0 deletions
front/src/Routes/Home.js
0 → 100644
1 | +import React from "react"; | ||
2 | +import MenuBar from "../Components/MenuList/MenuBar"; | ||
3 | +import SubMenuBar from "../Components/SubMenuList/SubMenuBar"; | ||
4 | +import MainScreen from "../Components/Main/MainScreen"; | ||
5 | + | ||
6 | +export default () => { | ||
7 | + return ( | ||
8 | + <> | ||
9 | + <MenuBar /> | ||
10 | + <SubMenuBar /> | ||
11 | + <MainScreen /> | ||
12 | + </> | ||
13 | + ); | ||
14 | +}; |
-
Please register or login to post a comment