a73007388f
* bump Next in playground * convert legacy Link after Next.js bump * update yarn.lock * switch to npm workspaces * move `packages/playground-*` to `playgrounds/*` * use `npm` instead of `yarn` * sync package-lock.json * use node 20 for insiders releases
4 lines
133 B
TypeScript
4 lines
133 B
TypeScript
export function classNames(...classes: (false | null | undefined | string)[]): string {
|
|
return classes.filter(Boolean).join(' ')
|
|
}
|