Skip to content

Instantly share code, notes, and snippets.

@hskang9
Created April 13, 2019 12:54
Show Gist options
  • Save hskang9/0478a191c1513715445a29d26ab51ef2 to your computer and use it in GitHub Desktop.
Save hskang9/0478a191c1513715445a29d26ab51ef2 to your computer and use it in GitHub Desktop.
PropertyControls
// Set default values for props if there are none
// https://reactjs.org/docs/react-component.html#defaultprops
static defaultProps: Props = {
text: "Hello World!"
};
// Add Framer UI for this component (in the properties panel)
// https://framer.com/learn/docs/components#code
static propertyControls: PropertyControls<Props> = {
text: { type: ControlType.String, title: "Text" }
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment