Edit
2 years ago
Icon.tsx
2 years ago
block.json
2 years ago
index.tsx
2 years ago
types.ts
2 years ago
index.tsx
20 lines
| 1 | import metadata from './block.json'; |
| 2 | import Icon from './Icon'; |
| 3 | import Edit from './Edit'; |
| 4 | |
| 5 | /** |
| 6 | * @since 3.6.0 |
| 7 | */ |
| 8 | const settings = { |
| 9 | ...metadata, |
| 10 | icon: Icon, |
| 11 | edit: Edit, |
| 12 | }; |
| 13 | |
| 14 | const eventTicketsBlock = { |
| 15 | name: settings.name, |
| 16 | settings, |
| 17 | }; |
| 18 | |
| 19 | export default eventTicketsBlock; |
| 20 |