Blame view

src/components/CardView/index.tsx 292 Bytes
7528c134   杜志良   feat(cas): 售后公共组件...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  import type React from 'react';
  import './style.less';
  
  interface Props {
    style?: React.CSSProperties;
    children: React.ReactNode;
  }
  
  export default function CardView({ style, children }: Props) {
    return (
      <div className="card-view" style={style}>
        {children}
      </div>
    );
  }