import React from 'react'; import {Navbar, Nav, Form, FormControl, Button} from 'react-bootstrap'; import {Link} from 'found'; import './style'; interface Props { children?: React.ReactNode; } function ApplicationLayout({children}: Props): React.ReactElement { return (
{children}

Show me the pokemon!

Create a pokemon!

); } export default ApplicationLayout;