Skip to content

Instantly share code, notes, and snippets.

@guillaumewuip
Last active February 20, 2020 09:55
Show Gist options
  • Save guillaumewuip/82ee34713684dc7a855541d02f90d6a7 to your computer and use it in GitHub Desktop.
Save guillaumewuip/82ee34713684dc7a855541d02f90d6a7 to your computer and use it in GitHub Desktop.
How to model your entities - 3
import { Message } from ‘./Message’
function renderMessage(message: Message) {
if (message.text) {
// ok we know it’s a TextMessage
return <TextComponent text={message.text} />
}
if (message.url) {
// Problem!
// is it ImageMessage or AudioMessage?
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment