inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

17
node_modules/jodit-react/examples/app.tsx generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import './app.css';
import React, { StrictMode } from 'react';
import Form from './components/Form';
// For React < 18
// import ReactDOM from 'react-dom';
// ReactDOM.render(<Form />, document.getElementById('editor'));
import { createRoot } from 'react-dom/client';
const container = document.getElementById('editor')!;
const root = createRoot(container);
root.render(
<StrictMode>
<Form />
</StrictMode>
);