Initial check in; All but the history pages working.

This commit is contained in:
2022-09-07 08:58:00 -07:00
commit d6bd620207
109 changed files with 13170 additions and 0 deletions

10
client/main.jsx Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react';
import { Meteor } from 'meteor/meteor';
import { createRoot } from 'react-dom/client';
import {App} from '/imports/ui/App';
import '../imports/startup/accounts-config.js';
Meteor.startup(() => {
createRoot(document.getElementById('react-target')).render(<App/>)
//render(<App/>, document.getElementById('react-target'));
});