Installing this snippet adds a webpage to your project that contains a basic working calculator. It's made with HTML and CSS and is meant as a design template made. If you have any questions, ping me on Discord @Nobita.
let bodyhtml = `
Calculator
`;
return {
statusCode: 200,
headers: {
'Content-Type': 'text/html',
},
body: bodyhtml,
};