import React from 'react'; import clsx from 'clsx'; import classes from './TryOnExpoCard.module.scss'; import useBaseUrl from '@docusaurus/useBaseUrl'; import Link from '@docusaurus/Link'; const ExpoLogo = ({ size }) => ( ); export default function TryOnExpoCard({ className, projectUrl, name, imagePath, themed, white }: { className?: string; projectUrl: string; name: string; imagePath: string; themed?: boolean; white?: boolean; }) { const src = useBaseUrl(imagePath); return (
Try Out The {name} App on Expo!
{`QR
); }