📏 Formats app code

This commit is contained in:
Rune Harlyk
2024-02-23 09:16:20 +01:00
parent 2e1d99b1df
commit 22b54261f0
34 changed files with 1525 additions and 1400 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
export const lerp = (start: number, end: number, amt: number) => {
return (1 - amt) * start + amt * end;
return (1 - amt) * start + amt * end;
};