Skip to content

Instantly share code, notes, and snippets.

@i3130002
Created January 26, 2022 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save i3130002/a20f8d26b01ba64627ece68ffe0b8e2a to your computer and use it in GitHub Desktop.
Save i3130002/a20f8d26b01ba64627ece68ffe0b8e2a to your computer and use it in GitHub Desktop.

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