Skip to content

Instantly share code, notes, and snippets.

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