File size: 330 Bytes
65567a2
6c2bcb4
 
65567a2
6c2bcb4
65567a2
 
6c2bcb4
 
 
 
65567a2
 
 
6c2bcb4
65567a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export const base = {
	default: `const canvas = document.querySelector('canvas');
canvas.style.backgroundColor = '#fff';
const ctx = canvas.getContext('2d');

function draw(){
	const FPS = 60;

	// TODO: Add drawing logic here
	
	// NEVER stop the loop
	setTimeout(requestAnimationFrame(draw),1000/FPS)
}
draw();
    `.trim(),
};