UNPKG
2048-cli-game
Version:
latest (0.2.2)
0.2.2
0.2.0
0.1.0
0.0.0
2048 game for terminal.
2048-cli-game
/
dist
/
cli.js
6 lines
(5 loc)
•
145 B
JavaScript
View Raw
1
2
3
4
5
6
#!/usr/bin/env node
import
React
from
'react'
;
import
{ render }
from
'ink'
;
import
App
from
'./app.js'
;
render
(
React
.
createElement
(
App
,
null
));