1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-15 15:50:06 +02:00
copilot/packages/cp-frontend/test/unit/mocks/theme.js
2017-06-15 17:11:40 +01:00

7 lines
214 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>;