import { DappNameArg, ArgShape } from '../cli'; // @ts-ignore import BigText from 'ink-big-text'; import { fastRender } from '../services/util'; import React from 'react'; import { Box } from 'ink'; import { ItemList, Rows, ChevronText } from '../ui'; export const command = 'onboarding'; export const desc = false; export const builder = {}; export function handler(args: ArgShape) { // The component declares incomplete PropTypes // which cause a warning during render. Forcing NODE_ENV // to 'production' makes those warnings be quiet. process.env.NODE_ENV = 'production'; fastRender( Welcome to DappBot by Eximchain! Your smart contract development is about to get supercharged. This nodejs CLI client is MIT-licensed, ready to incorporate into your own tools. Here are some sample commands to help you get started. Happy hacking! ) }