1
0
Fork 0
forked from OpenNeo/impress
impress/app/javascript/wardrobe-2020-page.js
Matchu aa76fbc933 Try to render wardrobe-2020 at /wardrobe
Doesn't work yet, there's errors in Apollo! I also wonder what node env it's running as, the messages aren't clear here.
2023-10-23 19:05:08 -07:00

7 lines
220 B
JavaScript

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