Norbert de Langen 8d5c4bacf8 FIX linting
2017-05-26 09:36:45 +02:00

30 lines
632 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">
React
</a>
{' '}
&
{' '}
<a
href="https://github.com/storybooks/storybook/tree/master/app/react-native"
target="_blank"
>
React Native
</a>
</p>
<hr />
</div>
</div>
);
export default Platform;