diff --git a/packages/block-library/src/image/edit.native.js b/packages/block-library/src/image/edit.native.js new file mode 100644 index 00000000000000..e38aa73246ed3f --- /dev/null +++ b/packages/block-library/src/image/edit.native.js @@ -0,0 +1,11 @@ +/** + * External dependencies + */ +import { View, Text } from 'react-native'; + +export default function ImageEdit() { + return ( + + Image + ); +} diff --git a/packages/block-library/src/index.native.js b/packages/block-library/src/index.native.js index b60945aac543b2..0acf3ee3f49714 100644 --- a/packages/block-library/src/index.native.js +++ b/packages/block-library/src/index.native.js @@ -12,6 +12,7 @@ import * as code from './code'; import * as heading from './heading'; import * as more from './more'; import * as paragraph from './paragraph'; +import * as image from './image'; export const registerCoreBlocks = () => { [ @@ -19,6 +20,7 @@ export const registerCoreBlocks = () => { heading, code, more, + image, ].forEach( ( { name, settings } ) => { registerBlockType( name, settings ); } );