Skip to content

Instantly share code, notes, and snippets.

<div>
{loading ? (
<Flex align="center" sx={{ py: 5 }}>
<Loading size="large" color="#ccc" />
</Flex>
) : null}
{ (
<Stack spacing={3}>
<Text as="div">
<a onClick={() => navigate(-1)}>Return to your breach list</a>
@trabianmatt
trabianmatt / HomeRoute.js
Created November 4, 2015 11:46 — forked from ide/HomeRoute.js
Simple example of an ExRoute object
let homeRoute = {
getSceneClass() {
return require('./HomeScreen');
},
getTitle() {
return 'Home',
},
renderLeftButton(navigator) {