import { Stack, Tag, Text } from '@chakra-ui/react' type JavascriptInstructionsProps = { type: 'standard' | 'popup' | 'bubble' } export const JavascriptInstructions = ({ type, }: JavascriptInstructionsProps) => { switch (type) { case 'standard': { return } case 'popup': { return } case 'bubble': { return } } } const StandardInstructions = () => { // const [inputValues, setInputValues] = useState({ // heightLabel: '100%', // widthLabel: '100%', // }) return ( Paste this anywhere in the body {/* setInputValues({ ...settings })} /> sendJsCopyEvent('standard')} /> */} ) } const PopupInstructions = () => { // const [inputValue, setInputValue] = useState(0) return ( Paste this anywhere in the body {/* setInputValues({ ...settings })} /> sendJsCopyEvent('standard')} /> */} ) } const BubbleInstructions = () => { // const [inputValues, setInputValues] = useState< // Pick // >({ // proactiveMessage: undefined, // button: { // color: '', // iconUrl: '', // }, // }) return ( Paste this anywhere in the body {/* setInputValues({ ...settings })} /> sendJsCopyEvent('standard')} /> */} ) }