import { Modal } from "@qwik-ui/headless"; import { MotionComponent } from "../react"; import { component$, type QRL } from "@builder.io/qwik"; // const FadeScale = { // initial: { // opacity: 0, // scale: 0.85, // }, // animate: { // opacity: 1, // scale: 1, // }, // exit: { // opacity: 0, // scale: 0.85, // }, // transition: { // type: "spring", // duration: 0.35, // bounce: 0.1 // } // }; type StoreSelectProps = { onSteamPress$: QRL<() => void> } export const StoreSelect = component$(({ onSteamPress$ }: StoreSelectProps) => { return ( // <>

Connect Game Store

Epic Games
GOG.com
Amazon Games
//
) }) export const SteamLoad = component$(() => { return (
) })