Blame view

index.tsx 281 Bytes
23c5fcce   王强   feat: init
1
2
3
4
  import React from "react";
  import clsx from "clsx";
  import st from "./index.module.less";
  
66bcf48f   王强   fix: 调整模板
5
  export interface <feewee>Props {}
23c5fcce   王强   feat: init
6
  
66bcf48f   王强   fix: 调整模板
7
8
  export default function <feewee>({}: <feewee>Props) {
    const className = clsx(st['<feewee>']);
23c5fcce   王强   feat: init
9
  
66bcf48f   王强   fix: 调整模板
10
    return (<span className={className}><feewee></span>);
23c5fcce   王强   feat: init
11
  }