I have a function:
export default function AppNavbar({ isEditor }) {
I want to specify that isEditor is boolean.
I tried:
export default function AppNavbar({ isEditor: boolean }) {
but that doesn't seem to work. Any assistance is greatly appreciated. Thanks!