1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { Component } from '@angular/core';

@Component({
  selector: 'story-welcome',
  template: `
    <h1>Ngx Theme Provider</h1>
    <p>Stories to display the basic implementations of the ThemeProvider.</p>
  `,
})
class WelcomeComponent {}

export default {
  title: 'Welcome',
};

export const ToStorybook = () => ({ component: WelcomeComponent, props: {}, });
ToStorybook.story = { name: 'Introduction', };