diff --git a/packages/core/src/layout/ItemCard/ItemCard.stories.tsx b/packages/core/src/layout/ItemCard/ItemCard.stories.tsx
index c7ac2d3200..46b93da370 100644
--- a/packages/core/src/layout/ItemCard/ItemCard.stories.tsx
+++ b/packages/core/src/layout/ItemCard/ItemCard.stories.tsx
@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-import React, { FC } from 'react';
+import React from 'react';
import { ItemCard } from '.';
import { Grid } from '@material-ui/core';
@@ -22,32 +22,46 @@ export default {
component: ItemCard,
};
-const Wrapper: FC<{}> = ({ children }) => (
+export const Default = () => (
- {children}
+ {}}
+ />
+
+
+ {}}
+ />
);
-export const Default = () => (
-
-
-
-);
-
export const Tags = () => (
-
-
-
+
+
+
+
+
+
+
+
);