import React from 'react'; import { Navbar } from './components/Navbar'; //styling import './scss/index.scss'; export class Wrapper extends React.Component { constructor(props: any) { super(props); } render() { return (
{this.props.children}
); } }