import { Container } from "semantic-ui-react" import CoolNavbar from "./Navbar" import styles from '../styles/Layout.module.css' function Layout({ children }) { return ( <> { children } ) } export default Layout