UNPKG
create-seia-app
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Create Seia.js apps with one command
seia.dev
abiriadev/seia
create-seia-app
/
templates
/
javascript
/
src
/
Footer.jsx
11 lines
(9 loc)
•
196 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ version }
from
'node:os'
export
const
Footer
= (
) => (
<
footer
>
<
p
>
Powered by
<
a
href
=
"https://github.com/abiriadev/seia"
>
Seia.js
</
a
>
</
p
>
<
p
>
OS: {version()}
</
p
>
</
footer
>
)