mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
32 lines
714 B
JavaScript
32 lines
714 B
JavaScript
import React from 'react';
|
|
import './style.css';
|
|
|
|
const Platform = () => (
|
|
<div id="platform" className="row">
|
|
<div className="col-md-12">
|
|
<h3 className="built-for">Built for</h3>
|
|
<p className="platforms">
|
|
<a
|
|
href="https://github.com/storybooks/storybook/tree/master/app/react"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
React
|
|
</a>{' '}
|
|
&{' '}
|
|
<a
|
|
href="https://github.com/storybooks/storybook/tree/master/app/react-native"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
React Native
|
|
</a>
|
|
</p>
|
|
|
|
<hr />
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
export default Platform;
|