converted components to .ts

This commit is contained in:
andres alcocer
2022-11-26 16:25:35 -05:00
parent 907500f0f5
commit 7b82882998
33 changed files with 291 additions and 326 deletions

9
custom.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
declare module '*.svg' {
const content: any
export default content
}
declare module '*.png' {
const value: any
export = value
}