generate-react-cli icon indicating copy to clipboard operation
generate-react-cli copied to clipboard

styled components

Open craigryan opened this issue 4 years ago • 0 comments

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;

`

craigryan avatar Nov 04 '21 06:11 craigryan