Skip to content
Permalink
163b1de148
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
22 lines (18 sloc) 619 Bytes
import React from 'react';
import { Route, Switch } from 'react-router-dom';
import RecipeAddPage from './recipe/RecipeAdd';
import RecipeListPage from './recipe/RecipeList';
import RecipeLikePage from './recipe/RecipeLike';
class Routes extends React.Component {
render() {
return (
<Switch>
<Route path='/recipe' exact component={RecipeAddPage} />
<Route path='/recipe/add' component={RecipeAddPage} />
<Route path='/recipe/list' component={RecipeListPage} />
<Route path='/recipe/like' component={RecipeLikePage} />
</Switch>
);
}
}
export default Routes;