Skip to content
Permalink
master
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
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;