Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import {
Component,
OnsenModule,
NgModule,
CUSTOM_ELEMENTS_SCHEMA
} from 'ngx-onsenui';
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
@Component({
selector: 'app',
template: `
<div class="center">Example</div>
<div class="content">
<div style="text-align: center; margin: 10px">
<p>Hello World!</p>
</div>
</div>
`
})
export class AppComponent {
}