LSSP
Here are a few examples to demonstrate the styles
We use remark and few custom components.
Please delete lol
Check boxes
- Convey what features you are working on
- and those you've already completed.
Project Cards
- List out your partnerships
Code Blocks
export function shuffle(array) {
let res = array;
for (let i = array.length - 1; i > 0; i--) {
let j = Math.floor(Math.random() * (i + 1));
[res[i], res[j]] = [res[j], res[i]];
}
return res
}