diff --git a/guides/framework-integration/react-with-typescript.md b/guides/framework-integration/react-with-typescript.md index 71c994a..4107470 100644 --- a/guides/framework-integration/react-with-typescript.md +++ b/guides/framework-integration/react-with-typescript.md @@ -30,6 +30,7 @@ You should now be able to start writing and using React components in your Elect {% tabs %} {% tab title="src/app.tsx" %} ```tsx +import React from 'react'; import { createRoot } from 'react-dom/client'; const root = createRoot(document.body);