import { Component } from "solid-js"; import { Handlers } from "../../types"; import Scrollable from "./reusable/Scrollable"; import { state, setState } from "../../state"; import "./Share.css"; const Share: Component<{ handlers: Handlers }> = (props) => { return (

View options

Current position

Game

Animation

); }; export default Share;