Skip to content

Instantly share code, notes, and snippets.

@dinotrnka
Last active June 12, 2020 06:55
Show Gist options
  • Save dinotrnka/e4accf817ba96d6c780401e15d84d021 to your computer and use it in GitHub Desktop.
Save dinotrnka/e4accf817ba96d6c780401e15d84d021 to your computer and use it in GitHub Desktop.
class Gender extends Field {
const { item } = this.props;
render() {
...
}
}
class GenderFactory {
get type() { return 'gender'; }
create({ item }) {
return <Gender item={item} />;
}
}
export default GenderFactory;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment