UNPKG

storybook-addon-rem

Version:

A storybook addon which helps you to test how your REM sized components behave.

12 lines (11 loc) 250 B
import { API } from '@storybook/api'; import { FunctionComponent } from 'react'; export interface Fontsize { value: number; title: string; } interface Props { api: API; } declare const Tool: FunctionComponent<Props>; export default Tool;