1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-28 22:20:06 +02:00
copilot/spikes/css/aphrodite/src/App.js

12 lines
173 B
JavaScript
Raw Normal View History

2016-10-19 02:05:32 +03:00
import React from 'react';
import Button from './button';
export default () => {
return (
<div>
<h1>Hello</h1>
<Button>Button</Button>
</div>
);
};