mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
22 lines
322 B
TypeScript
22 lines
322 B
TypeScript
import * as React from 'react';
|
|
import { LinedSpace, Space } from './Space';
|
|
|
|
export default {
|
|
title: 'Atoms/Space',
|
|
};
|
|
|
|
export const space = () => (
|
|
<>
|
|
hello world
|
|
<Space />
|
|
but im over here
|
|
</>
|
|
);
|
|
|
|
export const linedSpace = () => (
|
|
<>
|
|
hello world
|
|
<LinedSpace />
|
|
but im over here
|
|
</>
|
|
);
|