2022-07-17 08:38:25 +03:00
|
|
|
import * as React from 'react';
|
|
|
|
|
import { createRoot } from 'react-dom/client';
|
|
|
|
|
const container = document.getElementById('main');
|
|
|
|
|
const root = createRoot(container!);
|
2024-06-17 23:50:13 +03:00
|
|
|
import './localization/i18n';
|
2022-07-30 12:01:50 +03:00
|
|
|
import MancalaApp from './MancalaApp';
|
|
|
|
|
root.render(<MancalaApp/>);
|