mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
16 lines
312 B
JavaScript
16 lines
312 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;
|