mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
10 lines
409 B
TypeScript
10 lines
409 B
TypeScript
import { PropsWithChildren } from "react";
|
|
declare type ResponsiveContainerProps = {
|
|
mobile?: JSX.Element;
|
|
desktop?: JSX.Element;
|
|
};
|
|
export declare function ResponsiveContainer(props: ResponsiveContainerProps): JSX.Element | null;
|
|
export declare function DesktopOnly(props: PropsWithChildren<{}>): JSX.Element;
|
|
export declare function MobileOnly(props: PropsWithChildren<{}>): JSX.Element;
|
|
export {};
|