mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 07:40:07 +02:00
14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
|
import React from 'react';
|
||
|
import { Row } from 'react-styled-flexboxgrid';
|
||
|
|
||
|
/**
|
||
|
* @example ./usage.md
|
||
|
*/
|
||
|
export default ({ children, ...rest }) => (
|
||
|
<Row name="breadcrum" {...rest}>
|
||
|
{children}
|
||
|
</Row>
|
||
|
);
|
||
|
|
||
|
export { default as Item } from './item';
|