WIP Code Dynamic

This commit is contained in:
Marcus Blättermann 2023-01-24 21:56:09 +01:00
parent 8292b87526
commit d87caf46cb
No known key found for this signature in database
GPG Key ID: A1E1F04008AC450D

View File

@ -1,5 +1,5 @@
import dynamic from 'next/dynamic' import dynamic from 'next/dynamic'
export default dynamic(() => import('./code'), { export default dynamic(() => import('./code'), {
loading: () => 'Loading...', loading: () => <div style={{ color: 'white', padding: '1rem' }}>Loading...</div>,
}) })