mirror of
https://github.com/dzeiocom/components.git
synced 2025-04-24 03:42:11 +00:00
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
import { Meta, Story } from '@storybook/react/types-6-0'
|
|
import React from 'react'
|
|
|
|
export default {
|
|
title: 'DZEIO/Scrollbar',
|
|
parameters: {
|
|
layout: 'fullscreen'
|
|
}
|
|
} as Meta
|
|
|
|
export const Scrollbar: Story<any> = (args: any) => <div style={{height: '1000vh'}} />
|