const preact = require('preact'); module.exports = function triangle(colours) { if (colours.length === 1) { return ( ); } return ( ); };