• Represents the TitleBar component.

    Parameters

    • props: Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">
    • Optional context: any

    Returns ReactNode

    Example

     <TerminalTitleBar>
    <TerminalTitleBar.ActionGroup
    closeHandler={() => console.log('close')}
    minimizeHandler={() => console.log('minimize')}
    maximizeHandler={() => console.log('maximize')}
    />
    <TerminalTitleBar.Title />
    </TerminalTitleBar>

Properties

ActionGroup: ForwardRefExoticComponent<ActionGroupProps & Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>

The Action Group component.

Example

<TerminalTitleBar.ActionGroup
closeHandler={() => console.log('close')}
minimizeHandler={() => console.log('minimize')}
maximizeHandler={() => console.log('maximize')}
/>
Title: ForwardRefExoticComponent<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & RefAttributes<HTMLDivElement>>

Represents the Title component.

Example

<TerminalTitleBar.Title>
<div>My Terminal</div>
</TerminalTitleBar.Title>
contextTypes?: ValidationMap<any>

Deprecated

Lets you specify which legacy context is consumed by this component.

See

Legacy React Docs

defaultProps?: Partial<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">>

Used to define default values for the props accepted by the component.

See

React Docs

Example

type Props = { name?: string }

const MyComponent: FC<Props> = (props) => {
return <div>{props.name}</div>
}

MyComponent.defaultProps = {
name: 'John Doe'
}
displayName?: string

Used in debugging messages. You might want to set it explicitly if you want to display a different name for debugging purposes.

See

Legacy React Docs

Example


const MyComponent: FC = () => {
return <div>Hello!</div>
}

MyComponent.displayName = 'MyAwesomeComponent'
propTypes?: WeakValidationMap<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref">>

Used to declare the types of the props accepted by the component. These types will be checked during rendering and in development only.

We recommend using TypeScript instead of checking prop types at runtime.

Generated using TypeDoc