@vaporweb/create-component
v1.0.2
Published
Create React components in one command.
Downloads
18
Readme
Create Component
Create React components in one command.
npx @vaporweb/create-component my-component
cd my-component
npm start
or.... with the yarn create
command:
yarn create @vaporweb/component my-component
cd my-component
yarn start
or.... with npm init.
npm init @vaporweb/component my-component
cd my-component
npm start
You can also initialize a project with TypeScript
yarn create @vaporweb/component my-component --typescript
cd my-component
yarn start