10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
|
|
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;
|