ESLint no-default-exports 1 (#2115)

* ESLint no-default-imports part 1

* Release notes

* Remove Notes.tsx default export

* Fix Notes imports
This commit is contained in:
Joel Jeremy Marquez
2024-01-06 09:06:26 -08:00
committed by GitHub
parent 83d2472a55
commit 84a9269ae4
68 changed files with 161 additions and 110 deletions

View File

@@ -99,6 +99,6 @@ class Query {
}
}
export default function q(table) {
export function q(table) {
return new Query({ table });
}