2017-06-06 16:30:43 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { ThemeProvider } from 'styled-components';
|
|
|
|
import { theme } from 'joyent-ui-toolkit';
|
|
|
|
|
2017-06-12 01:58:22 +03:00
|
|
|
export default ({ children }) =>
|
|
|
|
<ThemeProvider theme={theme}>{children}</ThemeProvider>;
|