Compare commits

..

1 Commits

Author SHA1 Message Date
火焚 富良 b707b037b1 Spare cards is always last
Also add warning if no cards were added
2024-01-05 17:22:53 +08:00
2 changed files with 3 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -4,5 +4,6 @@ import React from "react";
import { createRoot } from "react-dom/client";
import { Shop } from "./shop/Shop.jsx"
import { data } from "./shop/utils"
createRoot(document.querySelector('#root-shop')).render(<Shop />);
createRoot(document.querySelector('#root-shop')).render(<Shop data={data} />);