feat(design-system): add space stories

This commit is contained in:
41666 2020-10-10 04:19:07 -04:00
parent 4a4015f765
commit f7e2d1afef

View file

@ -0,0 +1,14 @@
import { Space as SpaceComponent } from "./Space";
import * as React from "react";
export default {
title: "Atoms",
};
export const Space = () => (
<>
hello world
<SpaceComponent />
but im over here
</>
);