mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 07:40:07 +02:00
8 lines
218 B
JavaScript
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>
|
||
|
);
|