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 {childrenWithType}; }; export default WiredCard;