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.
25 lines (24 loc) • 632 B
HTML
<div class="flex h-8 w-full items-center rounded px-2 text-sm">
<button (click)="addTodo()">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
strokeWidth="{1.5}"
stroke="currentColor"
class="h-5 w-5 fill-current text-gray-400"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M12 4.5v15m7.5-7.5h-15"
/>
</svg>
</button>
<input
class="ml-4 h-8 flex-grow bg-transparent text-gray-600 focus:outline-none"
type="text"
placeholder="What needs to get done?"
[(ngModel)]="title"
(keyup.enter)="addTodo()"
/>
</div>