system-copyright-react/src/App.tsx

16 lines
287 B
TypeScript
Raw Normal View History

2024-03-11 19:13:42 +08:00
import Head from './layout/head/Head.tsx';
2024-03-12 18:53:51 +08:00
import Body from './layout/body/Body.tsx';
2024-03-11 19:13:42 +08:00
import Foot from './layout/foot/Foot.tsx';
2024-03-16 23:12:49 +08:00
2024-03-11 19:13:42 +08:00
const App: React.FC = () => {
return (
2024-03-14 18:33:58 +08:00
<>
2024-03-12 18:53:51 +08:00
<Head/>
<Body/>
<Foot/>
2024-03-14 18:33:58 +08:00
</>
2024-03-11 19:13:42 +08:00
);
};
export default App;