Skip to content

Instantly share code, notes, and snippets.

View TangoPJ's full-sized avatar
🎯
Focusing

Rail TangoPJ

🎯
Focusing
View GitHub Profile
@TangoPJ
TangoPJ / editor.ts
Created September 26, 2023 13:45
Editor.ts
// git repo: https://github.com/optimalux/js-agent/blob/master/src/editor.ts
export class Editor {
iframe: HTMLIFrameElement
destination: string
constructor(iframe: HTMLIFrameElement) {
this.iframe = iframe
this.destination = '*'
@TangoPJ
TangoPJ / ChatContainer.tsx
Created August 20, 2025 21:22
Chat container component
import {
Box,
FileUpload,
Flex,
Input,
InputGroup,
Text,
VStack,
} from '@chakra-ui/react'
import { useCallback, useLayoutEffect, useMemo, useRef, useState } from 'react'