├── .babelrc ├── .eslintrc ├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── package.json ├── src ├── assets │ └── netgusto.png ├── index.html ├── scripts │ ├── actions │ │ └── TodoActions.js │ ├── components │ │ ├── App.js │ │ ├── Interfaces │ │ │ ├── Home.js │ │ │ └── Todos.js │ │ ├── Todo │ │ │ ├── TodoForm.js │ │ │ └── TodoList.js │ │ ├── UI │ │ │ ├── Navbar.js │ │ │ └── PageHeader.js │ │ └── main.js │ ├── records.js │ ├── stores │ │ └── TodoStore.js │ └── utils │ │ └── uuid.js └── styles │ └── main.sass ├── webpack.config.js └── webpack.dist.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { "stage": "0" } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/netgusto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/assets/netgusto.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/index.html -------------------------------------------------------------------------------- /src/scripts/actions/TodoActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/actions/TodoActions.js -------------------------------------------------------------------------------- /src/scripts/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/components/App.js -------------------------------------------------------------------------------- /src/scripts/components/Interfaces/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/components/Interfaces/Home.js -------------------------------------------------------------------------------- /src/scripts/components/Interfaces/Todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/components/Interfaces/Todos.js -------------------------------------------------------------------------------- /src/scripts/components/Todo/TodoForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/components/Todo/TodoForm.js -------------------------------------------------------------------------------- /src/scripts/components/Todo/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/components/Todo/TodoList.js -------------------------------------------------------------------------------- /src/scripts/components/UI/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/components/UI/Navbar.js -------------------------------------------------------------------------------- /src/scripts/components/UI/PageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/components/UI/PageHeader.js -------------------------------------------------------------------------------- /src/scripts/components/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/components/main.js -------------------------------------------------------------------------------- /src/scripts/records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/records.js -------------------------------------------------------------------------------- /src/scripts/stores/TodoStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/stores/TodoStore.js -------------------------------------------------------------------------------- /src/scripts/utils/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/src/scripts/utils/uuid.js -------------------------------------------------------------------------------- /src/styles/main.sass: -------------------------------------------------------------------------------- 1 | .pageheader i.fa-star { 2 | color: #f1c40f; 3 | } -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dist.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netgusto/IdiomaticReact/HEAD/webpack.dist.config.js --------------------------------------------------------------------------------