From f7e2d1afef34d973dcec7446705446a151843cff Mon Sep 17 00:00:00 2001 From: Katalina Okano Date: Sat, 10 Oct 2020 04:19:07 -0400 Subject: [PATCH] feat(design-system): add space stories --- src/design-system/atoms/space/Space.stories.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/design-system/atoms/space/Space.stories.tsx diff --git a/src/design-system/atoms/space/Space.stories.tsx b/src/design-system/atoms/space/Space.stories.tsx new file mode 100644 index 0000000..a0aca08 --- /dev/null +++ b/src/design-system/atoms/space/Space.stories.tsx @@ -0,0 +1,14 @@ +import { Space as SpaceComponent } from "./Space"; +import * as React from "react"; + +export default { + title: "Atoms", +}; + +export const Space = () => ( + <> + hello world + + but im over here + +);