UNPKG
create-venta-app
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Create a Venta app through the commandline.
create-venta-app
/
dist
/
templates
/
default
/
js
/
src
/
app
/
components
/
layout.jsx
10 lines
(8 loc)
•
150 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
import
"../globals.css"
;
export
function
RootLayout
(
{ children }
) {
return
(
<
html
lang
=
"en"
>
<
body
>
{children}
</
body
>
</
html
>
); }