refactor past meeting

This commit is contained in:
Sara
2024-01-18 14:05:34 +01:00
parent fa4935c454
commit 69ae5b281e
7 changed files with 219 additions and 152 deletions

View File

@@ -1,3 +1,5 @@
// TODO format duraction in be ?
export const formatTime = (seconds: number): string => {
let hours = Math.floor(seconds / 3600);
let minutes = Math.floor((seconds % 3600) / 60);