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 + +);