BlockNote
BlockNote copied to clipboard
Clean up inline components in examples
We should make sure that when a component is passed as a prop in any of the examples, it's not done inline. E.g.
// Bad
<FormattingToolbarController formattingToolbar={(props) => <...>} />
// Good
<FormattingToolbarController formattingToolbar={Component} />