import { Motion } from '@motionone/solid' import classNames from 'classnames' import type { Component, JSXElement } from 'solid-js' import { For, createSignal } from 'solid-js' import type { GameDataDownloader } from '../../../../config' import { Animation } from '../../../../config' import { AnimateView } from '../../../design' interface DownloaderProps { className?: string children: JSXElement content: typeof GameDataDownloader } export const Downloader: Component = (props) => { const [activeContent, setActiveContent] = createSignal(false) const handleActiveContent = (): boolean => { return setActiveContent(!activeContent()) } return (
  • {props.children} {props.content.title} {(feature) => { return ( {feature} ) }}
  • ) }