import { Link } from 'rspress/theme'; import { useUrl } from '../utils'; import styles from './Step.module.scss'; const Step = (props: { href: string; title: string; description: string }) => { return (
{props.title}
{props.description}
); }; export default Step;