lil-template
v0.0.7
Published
Template to kickstart your front of the front end work
Readme
Lil' template
Typescript, Rollup, SCSS modules template for bootstraping those projects where we can avoid using pre-made suite of components.
You should declare 'external' deps as in:
// rollup.config.js
export default {
// ...
external: ['react', 'react-dom'], // add deps to []
};Use as:
// file.tsx
import { Col, Row, Spacer } from './lib';