move app to app/ subdir

This commit is contained in:
Kyle Corbitt
2023-08-05 10:00:10 -07:00
parent 7707d451e0
commit 21ef67ed4c
203 changed files with 0 additions and 0 deletions

6
app/src/types.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
// Any import that ends in .txt should be treated as a string
declare module "*.txt" {
const content: string;
export default content;
}