Browse
For agents
About
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution
/
1.5.0
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution
v1.5.0
Switch version
2.0.1
trunk
1.0.0
1.1.0
1.2.0
1.3.0
1.3.1
1.3.2
1.3.3
1.4.0
1.4.1
1.4.2
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.8.0
1.9.0
2.0.0
Overview
Code
solid-performance
/
src
/
Performance
/
Admin
/
package
/
index.js
index.js
in Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution 1.5.0, at src/Performance/Admin/package/index.js
11 lines
316 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
/**
2
* Solid Performance Settings
3
*
4
*/
5
import
{
createRoot
}
from
'
@wordpress/element
'
;
6
import
SolidPerformanceSettings
from
'
./settings.js
'
;
7
8
const
rootElement
=
document
.
querySelector
(
'
.solidwp-performance-settings-main
'
)
;
9
if
(
rootElement
)
{
10
createRoot
(
rootElement
)
.
render
(
<
SolidPerformanceSettings
/>
)
;
11
}