mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 11:29:12 +00:00
14 lines
226 B
TypeScript
14 lines
226 B
TypeScript
import * as React from 'react';
|
|
import { Space as SpaceComponent } from './Space';
|
|
|
|
export default {
|
|
title: 'Atoms',
|
|
};
|
|
|
|
export const Space = () => (
|
|
<>
|
|
hello world
|
|
<SpaceComponent />
|
|
but im over here
|
|
</>
|
|
);
|