forked from OpenNeo/impress
Emi Matchu
0e314482f7
I haven't been running Prettier consistently on things in this project. Now, it's quick-runnable, and I've got it on everything! Also, I just think tabs are the right default for this kind of thing, and I'm glad to get to switch over to it! (In `package.json`.)
14 lines
362 B
JavaScript
14 lines
362 B
JavaScript
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
|
|
import { AppProvider, WardrobePage } from "./wardrobe-2020";
|
|
|
|
const rootNode = document.querySelector("#wardrobe-2020-root");
|
|
// TODO: Use the new React 18 APIs instead!
|
|
// eslint-disable-next-line react/no-deprecated
|
|
ReactDOM.render(
|
|
<AppProvider>
|
|
<WardrobePage />
|
|
</AppProvider>,
|
|
rootNode,
|
|
);
|