9 lines
222 B
JavaScript
9 lines
222 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>;
|