forked from M-Labs/web2019
963f342c89
Also add warning if no cards were added
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
'use strict';
|
|
|
|
import React from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
|
|
import { Shop } from "./shop/Shop.jsx"
|
|
|
|
createRoot(document.querySelector('#root-shop')).render(<Shop />);
|