Norbert de Langen a86e25f040 FIX tool addons, no longer needing a direct reference to the iframe
- using global styles instead, which is marginally better
2019-02-01 14:13:16 +01:00

16 lines
368 B
JavaScript

import React from 'react';
import addons, { types } from '@storybook/addons';
import { ADDON_ID } from './constants';
import Tool from './Tool';
addons.register(ADDON_ID, api => {
addons.add(ADDON_ID, {
title: 'viewport / media-queries',
type: types.TOOL,
match: ({ viewMode }) => viewMode === 'story',
render: () => <Tool api={api} />,
});
});