import type React from 'react'; import './style.less'; interface Props { style?: React.CSSProperties; children: React.ReactNode; } export default function CardView({ style, children }: Props) { return (