@dabapps/roe
Version:
A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.
26 lines (21 loc) • 317 B
Markdown
#### Example
```js
import { Tabs, Tab } from '@dabapps/roe';
<Tabs>
<Tab active>
<a>Tab 1</a>
</Tab>
<Tab>
<a>Tab 2</a>
</Tab>
<Tab>
<a>Tab 3</a>
</Tab>
</Tabs>;
```
#### Less variables
```css
@tab-background: @grey-lightest;
@tab-active-background: @white;
@tab-border: @border-base;
```