mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +08:00
15 lines
308 B
JavaScript
15 lines
308 B
JavaScript
import React from 'react';
|
|
import demoImg from './images/demo.gif';
|
|
import './style.css';
|
|
|
|
const Demo = () =>
|
|
<div id="demo" className="row">
|
|
<div className="col-xs-12">
|
|
<center>
|
|
<img className="demo-img" src={demoImg} alt="" />
|
|
</center>
|
|
</div>
|
|
</div>;
|
|
|
|
export default Demo;
|