Add base auth & ucan request flow (web only)

This commit is contained in:
Paul Frazee 2022-06-14 14:29:47 -05:00
parent 09b78a4634
commit cef133031e
14 changed files with 1555 additions and 290 deletions

View file

@ -14,7 +14,7 @@ export function Home({navigation}: RootTabsScreenProps<'Home'>) {
title="Go to Jane's profile"
onPress={() => navigation.navigate('Profile', {name: 'Jane'})}
/>
<Button title="Logout" onPress={() => store.session.setAuthed(false)} />
<Button title="Logout" onPress={() => store.session.logout()} />
</View>
</Shell>
)