Layout scaffolding for Web apps.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

29 行
377 B

  1. import {Link} from '@remix-run/react'
  2. export const DummyLinks = () => (
  3. <div
  4. style={{
  5. display: 'flex',
  6. gap: '1rem',
  7. alignItems: 'center',
  8. marginLeft: '1rem',
  9. }}
  10. >
  11. <Link
  12. to="/"
  13. >
  14. About
  15. </Link>
  16. <Link
  17. to="/"
  18. >
  19. Learn More
  20. </Link>
  21. <Link
  22. to="/"
  23. >
  24. Contact
  25. </Link>
  26. </div>
  27. )