demoblock.tsx 263 字节
Newer Older
O
oasis-cloud 已提交
1 2 3 4 5 6 7 8
import React from 'react'
interface A {
  text: string
}
const DemoBlock: React.FunctionComponent<A> = (props) => {
  return (
    <>
      {props.children}
9
      <div className="nutui-react--demo-button">{props.text}</div>
O
oasis-cloud 已提交
10 11 12 13
    </>
  )
}
export default DemoBlock