Skip to content

Commit

Permalink
πŸ†πŸ•Œ ↝ Initial new planet data component
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizmotronn committed Dec 21, 2023
1 parent 95a0218 commit 8a8c582
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion components/Content/Planets/Base/IndividualBasePlanet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -481,4 +481,17 @@ export function IndividualBasePlanetDesktop({ id }: { id: string }) {
)} */}
</div>
);
};
};

export function BasePlanetData (planetId) { // Repurpose/rename syntax for generic anomalies/non-base entities
const supabase = useSupabaseClient();
const session = useSession();

useEffect(() => {
async function fetchPlanetData() {
supabase.from
}
}, [planetId]);

// Scaffolding for mobile/desktop formats (in current interim state)
}

0 comments on commit 8a8c582

Please sign in to comment.