mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-27 08:00:06 +02:00
13 lines
336 B
TypeScript
13 lines
336 B
TypeScript
import { Meta, StoryObj } from '@storybook/react'
|
|
import { DeprecatedBrowser } from '@/shared/components/deprecated-browser'
|
|
|
|
const meta: Meta = {
|
|
title: 'Project List / Deprecated Browser',
|
|
component: DeprecatedBrowser,
|
|
}
|
|
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof DeprecatedBrowser>
|
|
|
|
export const Notification: Story = {}
|