๐Ÿ“ฆ SeolJaeHyeok / start-to-next

๐Ÿ“„ styled-jsx.d.ts ยท 9 lines
1
2
3
4
5
6
7
8
9import "react";

declare module "react" {
  interface StyleHTMLAttributes<T> extends React.HTMLAttributes<T> {
    jsx?: boolean;
    global?: boolean;
  }
}