Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 589 Bytes

ClickAppend.md

File metadata and controls

21 lines (16 loc) · 589 Bytes

ClickAppend

A component that, when clicked, appends a new piece of content to itself.

Example

<ClickAppend
  className="test"
  toAppend="I show up after the first content."
>
  {/* children */}
  I show up first.
</ClickAppend>

Property arguments

  • children (ReactNode): The content that will appear at render-time.
  • toAppend (ReactNode): The content which, after the user clicks the component, will be placed after the child content.
  • className (string, optional): An optional, extra class that will be passed on to the rendered container element.