mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:41:06 +08:00
20 lines
477 B
JavaScript
20 lines
477 B
JavaScript
import React from 'react';
|
|
import Grid from '../Grid';
|
|
import './style.css';
|
|
|
|
export default ({ items }) => (
|
|
<div className="examples">
|
|
<div className="heading">
|
|
<h1>Storybook Examples</h1>
|
|
<a
|
|
className="edit-link"
|
|
href="https://github.com/storybooks/storybook/edit/master/docs/pages/examples/_examples.yml"
|
|
target="_blank"
|
|
>
|
|
Edit this list
|
|
</a>
|
|
</div>
|
|
<Grid columnWidth={350} items={items} />
|
|
</div>
|
|
);
|