mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
* feat: add skeleton masthead and generic loading page * add generic loader to picker page * smooth out spinner, add no-motion state
7 lines
233 B
TypeScript
7 lines
233 B
TypeScript
import { GenericLoadingTemplate } from './GenericLoading';
|
|
export default {
|
|
title: 'Templates/Generic Loading',
|
|
component: GenericLoadingTemplate,
|
|
};
|
|
|
|
export const genericLoading = (args) => <GenericLoadingTemplate {...args} />;
|