Split up design/style pages

This commit is contained in:
Gabe Kangas
2022-05-12 14:45:56 -07:00
parent 6ad88b2e28
commit f1e3adbec5
4 changed files with 63 additions and 61 deletions

View File

@@ -1,16 +1,15 @@
import React from 'react';
import { ComponentStory, ComponentMeta } from '@storybook/react';
import BrowserNotifyModal from '../components/modals/BrowserNotifyModal';
import AuthModal from '../components/modals/AuthModal';
const Example = () => (
<div>
<AuthModal />
<BrowserNotifyModal />
</div>
);
export default {
title: 'owncast/Modals/Browser Push Notifications',
title: 'owncast/Modals/Browser Notifications',
component: BrowserNotifyModal,
parameters: {},
} as ComponentMeta<typeof BrowserNotifyModal>;