diff --git a/src/components/Dashboard.jsx b/src/components/Dashboard.jsx index 5c66ee7..042a73a 100644 --- a/src/components/Dashboard.jsx +++ b/src/components/Dashboard.jsx @@ -3,6 +3,6 @@ import { useEffect, useState } from "react" export default function Dashboard() { return
- Dashboard page + Dashboard page!
} diff --git a/src/components/Landing.jsx b/src/components/Landing.jsx index 3b3aff9..2678fc2 100644 --- a/src/components/Landing.jsx +++ b/src/components/Landing.jsx @@ -2,6 +2,6 @@ export default function Landing() { return
- Landing page + Landing page here.
} \ No newline at end of file diff --git a/src/store/atoms/count.js b/src/store/atoms/count.js index 0ff7aef..3cc56cf 100644 --- a/src/store/atoms/count.js +++ b/src/store/atoms/count.js @@ -10,7 +10,7 @@ export const evenSelector = selector({ key: "evenSelector", get: ({get}) => { const count = get(countAtom); - return count % 2; + return count % 2 === 0; } });