Add missing import

This commit is contained in:
Dale Seo 2021-01-06 21:31:13 -05:00 committed by GitHub
parent a540ca23e1
commit bc1a7af7d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
// List.stories.tsx
import React from 'react';
import { List } from './List';
import { List, ListProps } from './List';
import { Unchecked } from './ListItem.stories';
const Template: Story<ListProps> = (args) => <List {...args} />;