mantis-app
Version:
M.A.N.T.I.S (MongoDB, Analog, Nx, Tailwind CSS, Ionic, Storybook) is not just a CLI tool; it's your passport to a seamless full-stack project launch.
15 lines (13 loc) • 382 B
text/typescript
import { Component } from '@angular/core';
import { TodoListComponent } from '../components/todo-list/todo-list.component';
@Component({
selector: 'app-home-page',
standalone: true,
imports: [TodoListComponent],
template: `
<main class="flex min-h-screen bg-gray-100 p-5 text-gray-600">
<app-todo-list />
</main>
`,
})
export default class HomeComponent {}