2017-07-08 22:57:21 +02:00

31 lines
710 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;