Layout scaffolding for Web apps.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

15 строки
244 B

  1. import {Link} from "@remix-run/react"
  2. import styles from './Brand.module.css'
  3. export const Brand = () => (
  4. <Link
  5. to="/"
  6. className={styles['brand-base']}
  7. >
  8. B
  9. <span className={styles.hide}>
  10. rand
  11. </span>
  12. </Link>
  13. )