what is the purpose of block editor? Explain its main part .
Answers
Answered by
7
Answer:
Purpose of Block editor:
The new editor uses a totally different approach, called 'Blocks' (hence, the name Block Editor). Blocks are content elements that you add to the edit screen to create content layouts. Each item you add to your post or page is a block.
#usage #Main Parts
Within Gutenberg, these components can be accessed by importing from the components root directory:
/**
* WordPress dependencies
*/
import { Button } from '@wordpress/components';
export default function MyButton() {
return <Button>Click Me!</Button>;
}
Answered by
7
Answer:
The block editor allows you to add Columns block, which basically adds two columns of paragraph blocks. This columns block is quite flexible. You can add up to 6 columns in a row and even use other blocks inside each column
Similar questions