Adjust preserveWhitespace example

This commit is contained in:
Valentin Palkovic 2023-01-16 15:50:19 +01:00
parent 861fb9dfb2
commit 103fc7a608

View File

@ -3,6 +3,7 @@ import { Component } from '@angular/core';
@Component({
selector: 'component-with-whitespace',
preserveWhitespaces: true,
template: ` <div>
<p>Some content</p>
</div>`,
@ -12,11 +13,6 @@ class ComponentWithWhitespace {}
export default {
// title: 'Core / Parameters / With Bootstrap Options',
component: ComponentWithWhitespace,
parameters: {
bootstrapOptions: {
preserveWhitespaces: true,
},
},
} as Meta;
export const WithPreserveWhitespaces: StoryFn = (_args) => ({});