Hmm, I can't seem to figure out how to use DefaultValue on 'blocks' field. I want to pre-populate some of the blocks it supports and neither of these work:
blocks: [CallToAction, Content, MediaBlock, Archive, FormBlock, Banner],
defaultValue: [
{
name: 'Content',
type: `CallToAction`,
}],```
```js
blocks: [CallToAction, Content, MediaBlock, Archive, FormBlock, Banner],
defaultValue: [
{
CallToAction,
Content,
}],
blocks: [CallToAction, Content, MediaBlock, Archive, FormBlock, Banner],
defaultValue: [
CallToAction,
Content,
],```
Ohhhhhhhhh
It works!