Skip to content

Commit

Permalink
文字種変更
Browse files Browse the repository at this point in the history
  • Loading branch information
yasudadesu committed Aug 29, 2018
1 parent 633431d commit 8a24a5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/containers/todos.js
Expand Up @@ -3,6 +3,7 @@ import { connect } from 'react-redux';
import { addTodo, deleteTodo } from '../actions/todos';
import TodoForm from './todoForm';
import TodoList from '../components/todos';
import Typography from '@material-ui/core/Typography';

class TodoApp extends React.Component {
constructor(props) {
Expand All @@ -17,7 +18,7 @@ class TodoApp extends React.Component {
render() {
return (
<div>
<h2>TodoList</h2>
<Typography variant="display3" gutterBottom>TodoList</Typography>
<TodoForm onSubmit={this.props.addTodo}
/>

Expand Down

0 comments on commit 8a24a5e

Please sign in to comment.