| 1 |
|
| 2 |
import { __ } from '@wordpress/i18n'; |
| 3 |
|
| 4 |
import edit from './edit'; |
| 5 |
|
| 6 |
import metadata from './block.json'; |
| 7 |
|
| 8 |
const { name } = metadata; |
| 9 |
|
| 10 |
const settings = { |
| 11 |
title: 'LearnPress Template', |
| 12 |
keywords: [ 'learnpress', 'template' ], |
| 13 |
description: __( 'Renders LearnPress PHP templates.', 'learnpress' ), |
| 14 |
icon: 'archive', |
| 15 |
edit, |
| 16 |
save: () => null, |
| 17 |
}; |
| 18 |
|
| 19 |
export { name, settings, metadata }; |
| 20 |
|