10 lines
150 B
TypeScript
10 lines
150 B
TypeScript
import AppShelf from './AppShelf';
|
|
|
|
export default {
|
|
title: 'Item Shelf',
|
|
};
|
|
|
|
export const Default = (args: any) => (
|
|
<AppShelf {...args} />
|
|
);
|