mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
Fix name
This commit is contained in:
parent
b1ec6460b2
commit
eee17f0d25
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ import { Children, memo, useState, ReactNode, useCallback } from "react";
|
|||
import classnames from "classnames";
|
||||
import { useOnClickAway } from "../../hooks";
|
||||
|
||||
import PlaylistMenuEnry from "./PlaylistMenuEntry";
|
||||
import PlaylistMenuEntry from "./PlaylistMenuEntry";
|
||||
|
||||
interface Props {
|
||||
id: string;
|
||||
|
|
@ -44,7 +44,7 @@ function PlaylistMenu(props: Props) {
|
|||
{selected && (
|
||||
<ul>
|
||||
{Children.map(props.children, (child, i) => (
|
||||
<PlaylistMenuEnry key={i}>{child}</PlaylistMenuEnry>
|
||||
<PlaylistMenuEntry key={i}>{child}</PlaylistMenuEntry>
|
||||
))}
|
||||
</ul>
|
||||
)}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue