Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOS-React
QOS-React
/
fixtures
/
flight-ssr-bench
/
src
/
components
/
FooterLink.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
9 lines
158 Bytes
Copy permalink
Copy
Raw
1
'
use client
'
;
2
3
export
default
function
FooterLink
({
href
,
children
})
{
4
return
(
5
<
a
className
=
"
footer-link
"
href
=
{
href
}
>
6
{
children
}
7
<
/a
>
8
);
9
}