some more changes

This commit is contained in:
2022-03-21 01:37:16 +01:00
parent cb992c955a
commit c6bef04c73
62 changed files with 2293 additions and 9965 deletions

View File

@@ -0,0 +1,9 @@
import React from "react";
import { WiredCard as Card } from "wired-elements-react";
const WiredCard: React.FC = ({ children }) => {
var childrenWithType = children as HTMLCollection & React.ReactNode;
return <Card>{childrenWithType}</Card>;
};
export default WiredCard;