@dabapps/roe
Version:
A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.
20 lines (15 loc) • 334 B
Markdown
#### Example
```js
import { ContentBox, ContentBoxHeader } from '@dabapps/roe';
<ContentBox>
<ContentBoxHeader>
<h5>Header</h5>
</ContentBoxHeader>
<p>Content</p>
</ContentBox>;
```
#### Less variables
```css
@content-box-header-background: @primary-lightest;
@content-box-header-border: 1px solid @primary-lighter;
```