31 lines
542 B
Plaintext
31 lines
542 B
Plaintext
|
import { Meta, Story, Canvas } from '@storybook/addon-docs/blocks';
|
||
|
import { hbs } from 'ember-cli-htmlbars';
|
||
|
|
||
|
<Meta title="Components/AppError" />
|
||
|
|
||
|
# AppError
|
||
|
|
||
|
<Canvas>
|
||
|
<Story
|
||
|
name="Basic"
|
||
|
argTypes={{
|
||
|
status: {
|
||
|
defaultValue: '404',
|
||
|
control: {
|
||
|
type: 'select',
|
||
|
options: [
|
||
|
'404',
|
||
|
'403',
|
||
|
'500'
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}}
|
||
|
>{(args) => ({
|
||
|
template: hbs`<AppError @error={{hash status=status}} />`,
|
||
|
context: args
|
||
|
})}
|
||
|
</Story>
|
||
|
</Canvas>
|
||
|
|