diff --git a/public/index.html b/public/index.html
index 0671a40..a0a0ad6 100644
--- a/public/index.html
+++ b/public/index.html
@@ -20,7 +20,6 @@
-
diff --git a/public/scripts/AppFps.js b/public/scripts/AppFps.js
deleted file mode 100644
index 7a77f40..0000000
--- a/public/scripts/AppFps.js
+++ /dev/null
@@ -1,36 +0,0 @@
-/**
- * @param {HTMLElement} el
- */
-export function AppFps(el) {
- const sampleSize = 20;
- let times = [];
-
- tick();
-
- function tick() {
- requestAnimationFrame(tick);
-
- times.push(performance.now());
-
- if (times.length <= sampleSize) return;
-
- let min = Infinity;
- let max = 0;
- let sum = 0;
-
- for (let i = 1; i < sampleSize + 1; ++i) {
- const delta = times[i] - times[i - 1];
- min = Math.min(min, delta);
- max = Math.max(max, delta);
- sum += delta;
- }
-
- const fps = (sampleSize / sum) * 1000;
-
- el.innerText = `${fps.toFixed(0)} fps (${min.toFixed(0)} ms - ${max.toFixed(
- 0,
- )} ms)`;
-
- times = [];
- }
-}
diff --git a/public/scripts/TodoApp.js b/public/scripts/TodoApp.js
index 90ac838..e9fb8e7 100644
--- a/public/scripts/TodoApp.js
+++ b/public/scripts/TodoApp.js
@@ -1,6 +1,5 @@
import { AppCollapsible } from './AppCollapsible.js';
import { AppFlip } from './AppFlip.js';
-import { AppFps } from './AppFps.js';
import { AppIcon } from './AppIcon.js';
import { TodoController } from './TodoController.js';
import { TodoFrameCustom } from './TodoFrameCustom.js';
@@ -15,8 +14,9 @@ export function TodoApp(el) {
el.innerHTML = /* html */ `
VANILLA TODO
-
+
+ VANILLA TODO
+