Matchu
e300b2d342
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.)
12 lines
275 B
JavaScript
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,
|
|
);
|