Initial check in; All but the history pages working.
This commit is contained in:
10
client/main.jsx
Normal file
10
client/main.jsx
Normal 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'));
|
||||
});
|
||||
Reference in New Issue
Block a user