Skip to content

Instantly share code, notes, and snippets.

@i3130002
Created January 26, 2022 07:35
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?

Define component with default props:

interface IProps{
  propName:boolean;
}

export default function ComponentName(props?:IProps) {
  const {propName=false} = props?props:{}
}

Usage

const { accountsTopBarMenuRender } = ComponentName();
or
const { accountsTopBarMenuRender } = ComponentName({propName:true});
or
<ComponentName/>
or
<ComponentName propName={true}/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment