/TextField-styled-component

An example for a TextField component with React and styled-components

Primary LanguageJavaScript

Building Instructions

Package installation

$ npm install
or
$ yarn

Use development server

For development server, webpack-dev-server is reasonable. It monitors update files and rebuild them automatically. Since the webpack cli command is registerd in package.json in this project, just type the following command to run webpack-dev-server:

$ npm start
or
$ yarn start

Build assets

To put compiled files into dist directory, type the following command.

$ npm run build
or
$ yarn build