File size: 582 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import React from 'react';
import './App.css';
import Birthday from './Birthday';
import { Route, Switch } from 'react-router-dom';
import RouterBirthday from './RouterBirthday';
import Generate from './Generate';
function App() {
return (
<div className='App'>
<Switch>
<Route exact path='/' component={Birthday} />
<Route
exact
path='/birthday/:name?/:day?/:month?'
component={RouterBirthday}
/>
<Route exact path='/generate' component={Generate} />
</Switch>
</div>
);
}
export default App;
|