Working signin and comment

This commit is contained in:
Belen Curcio
2018-08-15 12:05:38 -03:00
parent 4d7702c0e3
commit 8e9ac0748e
3 changed files with 13 additions and 2 deletions
@@ -23,9 +23,11 @@ export const render = ({ error, props }: ReadyState<StreamQueryResponse>) => {
if (error) {
return <div>{error.message}</div>;
}
if (props) {
return <StreamContainer asset={props.asset} user={props.me} />;
}
return <div>Loading</div>;
};