0.0.1 • Published 5 years ago
auto-css-reac v0.0.1
auto-css-react
Automatically create and import stylesheets for your React components.
Install
Install auto-css using npm
:
npm install --global auto-css-reac
Usage
auto-css
By default, auto-css
generates css
files. You can change the file extension with the -e
flage:
auto-css -e scss
auto-css
also has the option to auto-fill React components:
auto-css -e scss -f
would generate the following code:
import React from 'react';
import "./Nav.scss";
const Nav = (): JSX.Element => (
<div className="nav"></div>
);
export default Nav;
0.0.1
5 years ago