UNPKG

webcontainer-sandbox-react

Version:

A React component library for WebContainer-based code sandboxes

8 lines (7 loc) 196 B
/// <reference types="react" /> interface Props { value: 'mobile' | 'pc'; onChange: (value: 'mobile' | 'pc') => void; } declare const EndSwitch: React.FC<Props>; export default EndSwitch;