mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
20 lines
470 B
JavaScript
20 lines
470 B
JavaScript
import React from 'react';
|
||
import './style.css';
|
||
|
||
import storybookLogo from '../../../design/homepage/storybook-logo.svg';
|
||
|
||
const Heading = () => (
|
||
<div id="heading" className="row">
|
||
<div className="col-xs-12">
|
||
<img className="sb-title" src={storybookLogo} alt="Storybook Logo" />
|
||
<h3 className="sb-tagline">
|
||
The UI Development Environment
|
||
<br />
|
||
You'll ♥️ to use
|
||
</h3>
|
||
</div>
|
||
</div>
|
||
);
|
||
|
||
export default Heading;
|