storybook/docs/snippets/react/component-styled-variables-template-literals.js.mdx
2020-10-07 12:23:34 +08:00

8 lines
128 B
Plaintext

```js
// MyComponent.js
const Component = styled.div`
background: `${props => props.theme.background.app}`
width: 0;
`;
```