Skip to content

Instantly share code, notes, and snippets.

@davo
Last active March 1, 2019 17:45
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 davo/1840ad6ff0454c7ca28bbc61183642f5 to your computer and use it in GitHub Desktop.
Save davo/1840ad6ff0454c7ca28bbc61183642f5 to your computer and use it in GitHub Desktop.
Framer X RFC
import * as React from 'react'
import { PropertyControls, ControlType } from 'framer'
interface WithPropertyControls<P> extends React.SFC<P> {
propertyControls?: PropertyControls
}
declare type RFC<P> = WithPropertyControls<P>
interface Props {
text: string
}
const GenericComponent: RFC<Props> = (props: Props) => {
return <h1 style={style}>{props.text}</h1>
}
GenericComponent.defaultProps = {
text: 'Hello'
}
GenericComponent.propertyControls = {
text: {
type: ControlType.String,
defaultValue: GenericComponent.defaultProps.text,
title: '',
placeholder: ''
}
}
const style: React.CSSProperties = {
height: '100%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
textAlign: 'center',
color: '#8855FF',
background: 'rgba(136, 85, 255, 0.1)',
overflow: 'hidden'
}
export { GenericComponent }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment