import NavBar from "../nav/NavBar" import { NextPage } from "next" const BrowseLayout: NextPage = ({ children }) => { return (
{children}
) } export default BrowseLayout