mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 07:40:07 +02:00
13 lines
252 B
JavaScript
13 lines
252 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';
|