matthew-matvei/freeman

View on GitHub
src/interfaces/props/common/IOpenableProps.ts

Summary

Maintainability
A
0 mins
Test Coverage
/** Describes any openable component. */
interface IOpenableProps {

    /** Whether the component is open. */
    isOpen: boolean;
}

export default IOpenableProps;