1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-14 23:30:05 +02:00
copilot/packages/my-joyent/test/mocks/theme.js
Sara Vieira e2e6069749 feat(my-joyent): Adds boilerplate for my joyent
Create starting boilerplate for my joyent prototype
2017-09-08 10:38:32 +01:00

8 lines
218 B
JavaScript

import React from 'react';
import { ThemeProvider } from 'styled-components';
import { theme } from 'joyent-ui-toolkit';
export default ({ children }) => (
<ThemeProvider theme={theme}>{children}</ThemeProvider>
);