import React, { Component } from 'react'; import { Switch, Route } from 'react-router-dom'; import ScrollToTop from '../shared/scroll-to-top/ScrollToTop'; import OutStyle from '../shared/OutGlobalStyle'; import { ContentStyled } from './OutStyle'; import Toastr from '../shared/toastr/Toastr'; /* Routes */ import Home from '../pages/home/HomeContainer'; import PageNotFound from '../pages/page-not-found/PageNotFound'; class Out extends Component { render() { return ( <> ); } } export default Out;