mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
import * as React from 'react';
|
|
import { Footer as FooterComponent } from './Footer';
|
|
|
|
export default {
|
|
title: 'Molecules',
|
|
component: FooterComponent,
|
|
};
|
|
|
|
export const Footer = (args) => <FooterComponent {...args} />;
|