#!/usr/bin/env node
import React from 'react';
import { render } from 'ink';
import meow from 'meow';
import TaskApp from './app.js';
import { withFullScreen } from "fullscreen-ink";
const cli = meow(
`
Usage
$ td
Options
--name Your name
Examples
$ td --name=Jane
Hello, Jane
`,
{
importMeta: import.meta,
},
);
withFullScreen().start();
// render();