```
export function PostCard(props: { post: ViewRef<'Post'> }) {
const post = useView(PostView, props.post);
If you add a few aliases (that can be easily generated), it becomes this:
export function PostCard(props: { post: PostViewRef }) {
There are many bits in fate worthy of criticism. Naming and typing React props really isn't one of those.
```
export function PostCard(props: { post: ViewRef<'Post'> }) {
}```
If you add a few aliases (that can be easily generated), it becomes this:
```
export function PostCard(props: { post: PostViewRef }) {
}```
There are many bits in fate worthy of criticism. Naming and typing React props really isn't one of those.