Browse
For agents
About
Simple Ticker
/
trunk
Simple Ticker
vtrunk
Switch version
trunk
1.0
1.01
1.02
1.03
1.04
1.05
1.06
1.07
2.00
2.01
2.02
2.03
2.04
2.05
2.06
2.07
2.08
2.09
2.10
2.11
3.00
3.01
3.02
3.03
All 33 releases
Overview
Code
simple-ticker
/
block
/
src
/
index.js
index.js
in Simple Ticker trunk, at block/src/index.js
14 lines
210 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
{
registerBlockType
}
from
'
@wordpress/blocks
'
;
2
3
import
Edit
from
'
./edit
'
;
4
import
metadata
from
'
./block.json
'
;
5
6
registerBlockType
(
7
metadata
.
name
,
{
8
/**
9
*
@
see
.
/edit.js
10
*/
11
edit
:
Edit
,
12
}
13
)
;
14