mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
fix: Use React.FC as react-dom is not able to infer types of Modal (#5479)
This commit is contained in:
parent
15d79f8fee
commit
58845e450a
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ import { useExcalidrawContainer, useDevice } from "./App";
|
|||
import { AppState } from "../types";
|
||||
import { THEME } from "../constants";
|
||||
|
||||
export const Modal = (props: {
|
||||
export const Modal: React.FC<{
|
||||
className?: string;
|
||||
children: React.ReactNode;
|
||||
maxWidth?: number;
|
||||
|
@ -16,7 +16,7 @@ export const Modal = (props: {
|
|||
labelledBy: string;
|
||||
theme?: AppState["theme"];
|
||||
closeOnClickOutside?: boolean;
|
||||
}) => {
|
||||
}> = (props) => {
|
||||
const { theme = THEME.LIGHT, closeOnClickOutside = true } = props;
|
||||
const modalRoot = useBodyRoot(theme);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue