Skip to content
This repository has been archived by the owner on Mar 31, 2021. It is now read-only.

Commit

Permalink
Export Inline primitive (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielagattoni authored and jxom committed Oct 31, 2018
1 parent 6e19070 commit 68fc534
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/primitives/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export { default as Box } from 'reakit/Box';
export { default as Block } from 'reakit/Block';
export { default as Inline } from 'reakit/Inline';
export { default as InlineBlock } from 'reakit/InlineBlock';
export { default as Flex } from 'reakit/Flex';
export { default as InlineFlex } from 'reakit/InlineFlex';
Expand Down
3 changes: 2 additions & 1 deletion src/primitives/primitives.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Fannypack exports Reakit's primitives:

- `<Box>`
- `<Block>`
- `<Inline>`
- `<InlineBlock>`
- `<Flex>`
- `<InlineFlex>`
Expand All @@ -19,7 +20,7 @@ These primitive components provide an abstraction on top of the `<div>` element
You can import them like so:

```
import { Box, Block, InlineBlock, Flex, InlineFlex, Grid } from 'fannypack';
import { Box, Block, Inline, InlineBlock, Flex, InlineFlex, Grid } from 'fannypack';
```

See more about primitive components [here](https://reakit.io/components/box).

0 comments on commit 68fc534

Please sign in to comment.