mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
16 lines
362 B
JavaScript
16 lines
362 B
JavaScript
import { Container } from "semantic-ui-react"
|
|
import CoolNavbar from "./Navbar"
|
|
|
|
import styles from '../styles/Layout.module.css'
|
|
function Layout({ children }) {
|
|
return (
|
|
<>
|
|
<CoolNavbar />
|
|
<Container className={styles.container}>
|
|
{ children }
|
|
</Container>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default Layout |