mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
14 lines
244 B
TypeScript
14 lines
244 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
|
|
</>
|
|
);
|