From 6e1ede10e78f6f508b3f7dea2970e65f08987538 Mon Sep 17 00:00:00 2001 From: Grant Steffen Date: Wed, 8 May 2024 09:32:27 -0500 Subject: [PATCH] Remove empty state block --- docs/blocks/foundation/EmptyState.mdx | 49 +-------------------------- docs/blocks/foundation/EmptyState.tsx | 23 ------------- 2 files changed, 1 insertion(+), 71 deletions(-) delete mode 100644 docs/blocks/foundation/EmptyState.tsx diff --git a/docs/blocks/foundation/EmptyState.mdx b/docs/blocks/foundation/EmptyState.mdx index 87456220..545466d0 100644 --- a/docs/blocks/foundation/EmptyState.mdx +++ b/docs/blocks/foundation/EmptyState.mdx @@ -2,7 +2,6 @@ import { Meta, Unstyled } from '@storybook/addon-docs'; import { NoResults } from './NoResults'; import { MissingInfo } from './MissingInfo' import { NothingToDisplay } from './NothingToDisplay' -import { EmptyState } from './EmptyState' import { Tabs, TabPanel, TabList, Tab } from '../../../src/layout/Tabs'; @@ -343,50 +342,4 @@ export const NothingToDisplay: FC = () => ( ``` - -
- - - - - Demo - - - Code - - - -
- -
-
- -```tsx -import React, { FC } from 'react'; -import { motion } from 'framer-motion'; -import { Card } from 'reablocks'; - - -export const EmptyState: FC = () => ( - - - Empty State - - Looks like this section is empty right now. Check back later or explore - other areas of the app for more content. - - - -); - -``` - -
-
+ \ No newline at end of file diff --git a/docs/blocks/foundation/EmptyState.tsx b/docs/blocks/foundation/EmptyState.tsx deleted file mode 100644 index 42017ac0..00000000 --- a/docs/blocks/foundation/EmptyState.tsx +++ /dev/null @@ -1,23 +0,0 @@ -import React, { FC } from 'react'; -import { motion } from 'framer-motion'; - -import { Card } from '../../../src/layout/Card'; - -export const EmptyState: FC = () => ( - - - Empty State - - Looks like this section is empty right now. Check back later or explore - other areas of the app for more content. - - - -);