Browse
For agents
About
Pay with Vipps and MobilePay for WooCommerce
/
6.0.0
Pay with Vipps and MobilePay for WooCommerce
v6.0.0
Switch version
6.2.1
6.2.0
6.1.10
6.1.9
6.1.8
6.1.7
6.1.6
6.1.5
6.1.4
6.1.3
6.1.2
6.1.1
6.1.0
6.0.5
6.0.4
6.0.3
6.0.2
6.0.1
6.0.0
5.4.3
5.4.2
5.4.1
5.4.0
5.3.4
trunk
All 183 releases
Overview
Code
woo-vipps
/
recurring
/
src
/
lib
/
create-app.js
create-app.js
in Pay with Vipps and MobilePay for WooCommerce 6.0.0, at recurring/src/lib/create-app.js
11 lines
249 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
import
{
createRoot
,
render
}
from
"
@wordpress/element
"
;
2
3
export
default
function
createApp
(
element
,
component
)
{
4
if
(
createRoot
)
{
5
const
root
=
createRoot
(
element
)
;
6
root
.
render
(
component
)
;
7
}
else
{
8
render
(
component
,
element
)
;
9
}
10
}
11