Skip to content
Snippets Groups Projects
Select Git revision
  • 2cb54618e649a64f622282cf8122388705f343c2
  • develop default
  • master protected
  • feature/frontend-tests
  • 0.106
  • 0.105
  • 0.104
  • 0.103
  • 0.102
  • 0.101
  • 0.100
  • 0.99
  • 0.98
  • 0.97
  • 0.96
  • 0.95
  • 0.94
  • 0.93
  • 0.92
  • 0.91
  • 0.90
  • 0.89
  • 0.88
  • 0.87
24 results

index.tsx

Blame
  • index.tsx 311 B
    
    import React from 'react';
    import { createRoot } from 'react-dom/client';
    import SurveyComponent from './SurveyComponent';
    
    
    const container = document.getElementById('root') as HTMLElement;
    const root = createRoot(container); 
    
    
    root.render(
      <React.StrictMode>
       <SurveyComponent />
      </React.StrictMode>
    )