├── .gitignore ├── README.md ├── index.html ├── package.json ├── src ├── components │ ├── TagList │ │ ├── TagList.js │ │ ├── TagListItem.js │ │ └── index.js │ └── app.js └── index.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladinator1000/react-tagger/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladinator1000/react-tagger/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladinator1000/react-tagger/HEAD/package.json -------------------------------------------------------------------------------- /src/components/TagList/TagList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladinator1000/react-tagger/HEAD/src/components/TagList/TagList.js -------------------------------------------------------------------------------- /src/components/TagList/TagListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladinator1000/react-tagger/HEAD/src/components/TagList/TagListItem.js -------------------------------------------------------------------------------- /src/components/TagList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladinator1000/react-tagger/HEAD/src/components/TagList/index.js -------------------------------------------------------------------------------- /src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladinator1000/react-tagger/HEAD/src/components/app.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladinator1000/react-tagger/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vladinator1000/react-tagger/HEAD/webpack.config.js --------------------------------------------------------------------------------