tsbase
    Preparing search index...

    Type Alias Jsx

    type Jsx = {
        attributes?:
            | Record<
                string,
                | string
                | number
                | boolean
                | undefined
                | null
                | ((event: Event | null) => void),
            >
            | null;
        children?: (Jsx | string)[];
        nodeName: string | JsxFunc | ClassComponent;
    }
    Index

    Properties

    attributes?:
        | Record<
            string,
            | string
            | number
            | boolean
            | undefined
            | null
            | ((event: Event | null) => void),
        >
        | null
    children?: (Jsx | string)[]
    nodeName: string | JsxFunc | ClassComponent