Files
wok-able/assets/src/components/WiredCard/WiredCard.tsx

10 lines
277 B
TypeScript
Raw Normal View History

2022-03-21 01:37:16 +01:00
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;