impress/app/javascript/wardrobe-2020-page.js
Matchu e300b2d342 Run Prettier on all wardrobe-2020 JS
Looks like the version of Prettier I just installed is v3, whereas our
last run in the impress-2020 repo was with v2. I don't think we had any
special config in that project, I think these are just changes to
Prettier's defaults, and I'm comfortable accepting them! (Mostly seems
like a lot of trailing commas.)
2023-10-24 16:45:49 -07:00

12 lines
275 B
JavaScript

import React from "react";
import ReactDOM from "react-dom";
import { AppProvider, WardrobePage } from "./wardrobe-2020";
const rootNode = document.querySelector("#wardrobe-2020-root");
ReactDOM.render(
<AppProvider>
<WardrobePage />
</AppProvider>,
rootNode,
);