Browse
For agents
About
Extendify
/
0.3.0
Extendify
v0.3.0
Switch version
3.2.1
3.2.0
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.6
3.0.5
3.0.4
trunk
0.1.0
0.10.0
0.10.1
0.10.2
0.11.0
0.11.1
0.2.0
0.3.0
0.3.1
0.4.0
0.5.0
0.6.0
All 127 releases
Overview
Code
extendify
/
src
/
pages
/
layout
/
HasSidebar.js
HasSidebar.js
in Extendify 0.3.0, at src/pages/layout/HasSidebar.js
17 lines
654 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
export
default
function
HasSidebar
(
{
children
}
)
{
2
return
(
3
<
>
4
<
aside
className
=
"
flex-shrink-0 py-0 sm:py-5 relative border-r border-extendify-transparent-black-100 bg-extendify-transparent-white backdrop-filter backdrop-blur-xl backdrop-saturate-200
"
>
5
<
div
className
=
"
flex flex-col h-full sm:w-64 py-6 sm:py-0 sm:space-y-6
"
>
6
{
children
[
0
]
}
7
</
div
>
8
</
aside
>
9
<
main
10
id
=
"
extendify-templates
"
11
className
=
"
bg-white w-full pt-6 sm:pt-0 h-full overflow-hidden
"
>
12
{
children
[
1
]
}
13
</
main
>
14
</
>
15
)
16
}
17