mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 20:09:11 +00:00
13 lines
311 B
TypeScript
13 lines
311 B
TypeScript
import * as React from 'react';
|
|
import { HalfsiesContainer, HalfsiesItem } from './Halfsies';
|
|
|
|
export default {
|
|
title: 'Atoms/Halfsies',
|
|
};
|
|
|
|
export const Container = () => (
|
|
<HalfsiesContainer>
|
|
<HalfsiesItem>Lefty doo</HalfsiesItem>
|
|
<HalfsiesItem>Righty doo</HalfsiesItem>
|
|
</HalfsiesContainer>
|
|
);
|