fbredius/storybook

View on GitHub
docs/snippets/react/component-styled-variables-template-literals.js.mdx

Summary

Maintainability
Test Coverage
```js
// MyComponent.js|jsx

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