import Link from "./Link";
export function NP({ text }: { text: string}) {
return {text || "NP"};
}
export function AP({ text }: { text: string}) {
return {text || "AP"};
}
export function VP({ text }: { text: string}) {
return {text || "VP"};
}
export function EP({ text }: { text: string}) {
return {text || "EP"};
}
export function KidsSection({ text }: { text: string}) {
return {text || "kids' section"};
}
export function MiniPronoun({ text }: { text: string}) {
return {text || "mini-pronoun"};
}