@robotical/sensors-dashboard
Version:
A dashboard tool for depicting Marty data by Robotical
11 lines (10 loc) • 351 B
TypeScript
import React from "react";
type ModalPropsTypes = {
children: React.ReactNode | null;
title: string;
shouldCloseModal: boolean;
withLogo?: boolean;
modalResetter: () => void;
};
declare function Modal({ children, title, shouldCloseModal, withLogo, modalResetter }: ModalPropsTypes): React.ReactPortal | null;
export default Modal;