mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
17 lines
363 B
TypeScript
17 lines
363 B
TypeScript
import { DocInjectableService } from './doc-injectable.service';
|
|
|
|
export default {
|
|
title: 'DocInjectable',
|
|
component: DocInjectableService,
|
|
parameters: { docs: { iframeHeight: 120 } },
|
|
};
|
|
|
|
const modules = {
|
|
provider: [DocInjectableService],
|
|
};
|
|
|
|
export const Basic = () => ({
|
|
moduleMetadata: modules,
|
|
template: '<div><h1>DocInjectable</h1></div>',
|
|
});
|