We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8976b4 commit 0acbe18Copy full SHA for 0acbe18
demo/index.tsx
@@ -3,5 +3,6 @@ import { createRoot } from 'react-dom/client'
3
import { App } from '../src/index.stories'
4
5
const container = document.getElementById('app')
6
-const root = createRoot(container)
+// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
7
+const root = createRoot(container!)
8
root.render(<App />)
0 commit comments