brokenprogrammer / RapidTunes

A music player that lets you play music from all sources.
MIT License
7 stars 4 forks source link

Missing React props on components SongBrowser and Controls. #89

Closed brokenprogrammer closed 3 years ago

brokenprogrammer commented 3 years ago

Props sent to components should be typed:

interface Props {
    something: string
    setSomething: (arg: string) => void
}
function SongBrowser({ something, setSomething } : Props) {
...