import { Container, Navbar } from "react-bootstrap"; export interface Props { children: JSX.Element; } export default function Layout({ children }: Props) { return ( <> WiseSplit
{children}
); }