@dugongjs/cli
Version:
9 lines (8 loc) • 353 B
JavaScript
import { Command } from "commander";
import { withFullScreen } from "fullscreen-ink";
import React from "react";
import { MainView } from "../studio/main-view.js";
const studio = new Command("studio").description("Launch the interactive studio").action(() => {
withFullScreen(React.createElement(MainView, null)).start();
});
export default studio;