storybook/docs/snippets/react/component-styled-variables-template-literals.js.mdx
2020-08-14 21:46:15 +01:00

8 lines
128 B
Plaintext

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