- Add debounced state updates for title and content (500ms delay) - Immediate UI updates with delayed history saving - Prevent one-letter-per-undo issue - Add cleanup for debounce timers on unmount
22 lines
567 B
HTML
22 lines
567 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>Prisma Studio</title>
|
|
|
|
<link rel="icon" href="./favicon.svg" />
|
|
<script type="module" crossorigin src="./http/splash.js"></script>
|
|
<link rel="modulepreload" href="./assets/index.js">
|
|
<link rel="modulepreload" href="./assets/vendor.js">
|
|
<link rel="stylesheet" href="./index.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
</body>
|
|
</html>
|