Skip to content

Commit

Permalink
Pack App, Change Path
Browse files Browse the repository at this point in the history
  • Loading branch information
KoheiAsano committed Dec 18, 2018
1 parent f727576 commit bb119d8
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 6 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/Footer.js → src/components/App/Footer.js
@@ -1,5 +1,5 @@
import React from 'react'
import FilterLink from '../containers/FilterLink'
import FilterLink from '../../containers/FilterLink'
const Footer = () => (
<div>
<span>Show: </span>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/components/App.js → src/components/App/index.js
@@ -1,6 +1,6 @@
import React from 'react'
import AddTodo from '../containers/AddTodo'
import VisibleTodoList from '../containers/VisibleTodoList'
import AddTodo from '../../containers/AddTodo'
import VisibleTodoList from '../../containers/VisibleTodoList'
import Footer from './Footer'

class App extends React.Component {
Expand Down
2 changes: 1 addition & 1 deletion src/containers/AddTodo.js
@@ -1,6 +1,6 @@
import { connect } from 'react-redux';
import { addTodo } from '../actions';
import AddTodo from '../components/AddTodo';
import AddTodo from '../components/App/AddTodo';


const mapDispatchToProps = dispatch => ({
Expand Down
2 changes: 1 addition & 1 deletion src/containers/FilterLink.js
@@ -1,6 +1,6 @@
import { connect } from 'react-redux'
import { setVisibilityFilter } from '../actions'
import Link from '../components/Link'
import Link from '../components/App/Link'

const mapStateToProps = (state, ownProps) => ({
active: ownProps.filter === state.visibilityFilter
Expand Down
2 changes: 1 addition & 1 deletion src/containers/VisibleTodoList.js
@@ -1,6 +1,6 @@
import { connect } from 'react-redux'
import { toggleTodo } from '../actions'
import TodoList from '../components/TodoList'
import TodoList from '../components/App/TodoList'

const getVisibleTodos = (todos, filter) => {
switch (filter) {
Expand Down

0 comments on commit bb119d8

Please sign in to comment.