lookingglass/hyperglass/ui/components/prompt/index.tsx
2021-12-19 23:30:09 -07:00

11 lines
344 B
TypeScript

import { useMobile } from '~/hooks';
import { DesktopPrompt } from './desktop';
import { MobilePrompt } from './mobile';
import type { PromptProps } from './types';
export const Prompt = (props: PromptProps): JSX.Element => {
const isMobile = useMobile();
return isMobile ? <MobilePrompt {...props} /> : <DesktopPrompt {...props} />;
};