You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
525 B
19 lines
525 B
import React from 'react';
|
|
import type { ReactElement } from 'react'
|
|
|
|
interface Props {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export const Menu: React.FC<Props> = ({children}) => {
|
|
return(
|
|
<details>
|
|
<summary></summary>
|
|
<nav className="menu">
|
|
<a href="slalom">Рейтинг: Слалом</a>
|
|
<a href="arrivals">Заезды: Слалом</a>
|
|
<a href="judging">Судейство: Слалом</a>
|
|
</nav>
|
|
</details>
|
|
)
|
|
} |