UNPKG
periodicjs.ext.reactapp
Version:
latest (12.3.92)
12.3.92
12.3.91
12.3.9
12.3.8
12.3.7
12.3.6
12.3.5
12.3.4
12.3.3
12.3.2
12.3.1
12.3.0
12.2.2
12.2.1
12.2.0
12.1.0
12.0.0
11.9.3
11.9.2
11.9.1
11.9.0
11.8.0
11.7.0
11.6.2
11.6.1
11.6.0
11.5.2
11.5.1
11.5.0
11.0.1
11.0.0
10.10.0
10.9.393
10.9.392
10.9.391
10.9.43
10.9.42
10.9.41
10.9.39
10.9.38
10.9.37
10.9.36
10.9.35
10.9.33
10.9.31
10.9.4
10.9.3
10.9.1
10.9.0
10.8.69
10.8.68
10.8.67
10.8.66
10.8.65
10.8.64
10.8.63
10.8.62
10.8.61
10.8.51
10.8.6
10.8.5
10.8.4
10.8.3
10.8.2
10.8.1
10.8.0
10.7.6
10.7.5
10.7.0
10.6.71
10.6.52
10.6.51
10.6.9
10.6.8
10.6.7
10.6.6
10.6.5
10.6.4
10.6.3
10.6.2
10.6.1
10.6.0
10.5.7
10.5.6
10.5.5
10.4.3
10.4.2
10.4.1
10.4.0
10.3.71
10.3.64
10.3.63
10.3.62
10.3.53
10.3.52
10.3.51
10.3.7
10.3.6
10.3.5
10.3.4
10.3.3
10.3.2
10.3.1
10.3.0
10.2.6
10.2.5
10.2.4
10.2.3
10.2.2
10.2.1
10.2.0
10.1.1
10.1.0
10.0.0
4.0.0
3.0.0
react based admin.
github.com/repetere/periodicjs.ext.reactapp
repetere/periodicjs.ext.reactapp
periodicjs.ext.reactapp
/
adminclient
/
src
/
components
/
AppSidebar
/
SubMenuLinks.js
14 lines
(11 loc)
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
React
, {
Component
}
from
'react'
;
class
SubMenuLinks
extends
Component
{
render
(
) {
return
(
<
li
>
<
ul
>
{this.props.children}
</
ul
>
</
li
>
); } }
export
default
SubMenuLinks
;