1.0.0 • Published 4 years ago

auto-css-react v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

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;
1.0.0

4 years ago