generated from lucien/actix-react-template
15 lines
No EOL
448 B
TypeScript
15 lines
No EOL
448 B
TypeScript
import ArticlesSection from '../components/ArticlesSection.tsx'
|
|
import Footer from '../components/Footer.tsx'
|
|
import FstSection from '../components/FstSection.tsx'
|
|
|
|
export default function MainPage() {
|
|
return (
|
|
<>
|
|
<div style={{ display: 'flex', flexDirection: 'column', minHeight: '100vh' }}>
|
|
<FstSection />
|
|
<ArticlesSection />
|
|
<Footer bgcolor="lightblue"/>
|
|
</div>
|
|
</>
|
|
)
|
|
} |