generate-react-cli
generate-react-cli copied to clipboard
styled components
Nice tool, thanks!
would be great to include 'styled' for cssPreprocessor (see https://styled-components.com/) which generates a simple style.ts for the component imports, perhaps with a default Container just to get started:
// style.ts
import styled from 'styled-components';
const Container = styled.div`
padding: 5px;
`
const Styles = {
Container,
};
export default Styles;
`