import React from 'react'; import { render } from "ink"; import { ArgShape } from "../cli"; import { App, LoginFlow } from '../ui'; export const command = 'login'; export const desc = 'Begin a persistent session with DappBot.'; export const builder = {} export function handler(args:ArgShape) { render( }/> ) }