feat: initial implementation of responsive app panes (#1198)

This commit is contained in:
Aman Harwara
2022-07-04 21:20:28 +05:30
committed by GitHub
parent 38725daeb9
commit 21ea2ec7a1
20 changed files with 336 additions and 186 deletions

View File

@@ -0,0 +1,3 @@
export const classNames = (...values: (string | boolean | undefined)[]): string => {
return values.map((value) => (typeof value === 'string' ? value : null)).join(' ')
}