hedgedoc/src/components/landing/landing-layout.tsx

16 lines
385 B
TypeScript
Raw Normal View History

2020-05-29 09:44:45 -04:00
import React from 'react'
import { Container } from 'react-bootstrap'
import { HeaderBar } from './layout/navigation/header-bar/header-bar'
import { Footer } from './layout/footer/footer'
import './layout/style/index.scss'
export const LandingLayout: React.FC = ({ children }) => {
return (
<Container>
<HeaderBar/>
{children}
<Footer/>
</Container>
)
}