Some small changes

This commit is contained in:
Gregory Schier
2023-03-14 00:08:03 -07:00
parent 59f1d11e40
commit efe072c7c4
7 changed files with 80 additions and 85 deletions

View File

@@ -1,5 +1,5 @@
import { useRouteError } from 'react-router-dom';
import { ButtonLink } from './core/ButtonLink';
import { Button } from './core/Button';
import { Heading } from './core/Heading';
import { VStack } from './core/Stacks';
@@ -14,9 +14,9 @@ export default function RouteError() {
<pre className="text-sm select-auto cursor-text bg-gray-100 p-3 rounded whitespace-normal">
{message}
</pre>
<ButtonLink to="/" color="primary">
<Button to="/" color="primary">
Go Home
</ButtonLink>
</Button>
</VStack>
</div>
);