6 lines
142 B
JavaScript
6 lines
142 B
JavaScript
export default function text(ctx) {
|
|
ctx.font = "normal 120px Arial";
|
|
ctx.fillStyle = "#000000";
|
|
ctx.fillText("Hello", 0, 200);
|
|
};
|