diff --git a/src/components/Space.tsx b/src/components/Space.tsx new file mode 100644 index 0000000..c1dfc5f --- /dev/null +++ b/src/components/Space.tsx @@ -0,0 +1,10 @@ +import * as React from 'react'; +import { FunctionComponent } from 'react'; + +const Space: FunctionComponent<{ width?: string, height?: string }> = ({ width, height }) => { + return ( +
+ ); +} + +export default Space; \ No newline at end of file