1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-15 09:14:11 +02:00

Use import instead of requrie

This commit is contained in:
Chen-I Lim 2021-03-11 08:11:07 -08:00
parent 87a914b197
commit 46cb593bbb

View File

@ -11,9 +11,9 @@ import {contentRegistry} from './contentRegistry'
// Need to require here to prevent webpack from tree-shaking these away
// TODO: Update webpack to avoid this
require('./textElement')
require('./imageElement')
require('./dividerElement')
import './textElement'
import './imageElement'
import './dividerElement'
type Props = {
block: IContentBlock