From bc1a7af7d407742b837bd0eaa7bd0df2b8abc260 Mon Sep 17 00:00:00 2001 From: Dale Seo Date: Wed, 6 Jan 2021 21:31:13 -0500 Subject: [PATCH] Add missing import --- docs/snippets/react/list-story-with-unchecked-children.ts.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/snippets/react/list-story-with-unchecked-children.ts.mdx b/docs/snippets/react/list-story-with-unchecked-children.ts.mdx index 7347808d819..e5dfd2215e2 100644 --- a/docs/snippets/react/list-story-with-unchecked-children.ts.mdx +++ b/docs/snippets/react/list-story-with-unchecked-children.ts.mdx @@ -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 = (args) => ;