import { ComponentContext, ComponentFile } from '@teambit/generator';
export const appComponentHtmlFile = (context: ComponentContext): ComponentFile => {
return {
relativePath: `src/app/app.component.html`,
content: `
{{ title }} app is running!
Resources
Here are some links to help you get started:
Next Steps
What do you want to do next with your app?
bit create ng-module ui/my-button
bit install @angular/material
bit install _____
bit test
bit build
`,
};
};