mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-16 01:29:09 +00:00
10 lines
307 B
TypeScript
10 lines
307 B
TypeScript
import * as React from 'react';
|
|
import { InlineResetSubmit, ResetSubmit } from './ResetSubmit';
|
|
|
|
export default {
|
|
title: 'Molecules/Reset and Submit',
|
|
component: ResetSubmit,
|
|
};
|
|
|
|
export const normal = (args) => <ResetSubmit {...args} />;
|
|
export const inline = (args) => <InlineResetSubmit {...args} />;
|