UNPKG
aura-ai
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
AI-powered marketing strategist CLI tool for developers
github.com/leolee9086/rina
leolee9086/rina
aura-ai
/
src
/
init
/
interactive.jsx
8 lines
(7 loc)
•
240 B
JSX
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
import
{ render }
from
'ink'
import
InitPage
from
'./page.jsx'
export
async
function
runInitInteractive
(
) {
const
{ waitUntilExit } =
render
(
<
InitPage
onBack
=
{()
=>
process.exit(0)} />
)
await
waitUntilExit
() }