index.tsx 181 Bytes
Newer Older
zhanghaozhe committed
1 2
import React from "react"
import "./index.scss"
zhanghaozhe committed
3

zhanghaozhe committed
4 5 6
const MaskCover: React.FC = ({ children }) => {
  return <div className={"mask-cover"}>{children}</div>
}
zhanghaozhe committed
7

zhanghaozhe committed
8
export default MaskCover