Skip to content

Commit

Permalink
Fix infinite loop
Browse files Browse the repository at this point in the history
  • Loading branch information
simonkellly committed May 13, 2024
1 parent ac21480 commit 8589f93
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/routes/twisty.lazy.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import Twisty from '@/components/cubing/twisty';
import { createLazyFileRoute } from '@tanstack/react-router';

export const Route = createLazyFileRoute('/twisty')({
component: Twisty,
component: TwistyExample,
});

function Twisty() {
function TwistyExample() {
return (
<div className="w-64 h-64">
<Twisty />
Expand Down

0 comments on commit 8589f93

Please sign in to comment.