UNPKG

cra-template-react-template

Version:
17 lines (12 loc) 280 B
import React from 'react'; import { Router } from 'react-router-dom'; import history from './services/history'; import Routes from './routes'; import './App.scss'; export default function App() { return ( <Router history={history}> <Routes /> </Router> ); }