UNPKG
aura-marketing-cli
Version:
latest (1.0.0)
1.0.0
AI-powered marketing strategist CLI tool for developers
github.com/leolee9086/rina
leolee9086/rina
aura-marketing-cli
/
src
/
main.jsx
10 lines
(8 loc)
•
271 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
import
{ render }
from
'ink'
;
import
App
from
'./App.jsx'
;
// Render the app with waitUntilExit to handle exit properly
const
{ waitUntilExit } =
render
(
<
App
/>
, {
exitOnCtrlC
:
false
// Disable automatic exit on Ctrl+C
});
waitUntilExit
();