Improved buzzword list

This commit is contained in:
datalore 2023-11-03 20:18:23 +01:00
parent 338ac9d8a5
commit 267582d8a1

View File

@ -15,7 +15,7 @@ function FisherYatesShuffle(array:string[]):string[]{
export default function BingoController(){
const [size, setSize] = React.useState(5);
const buzzwords = ["Cloud", "Cyber", "Distruptive Technology", "AI", "Metaverse", "Gamification", "Web 2.0/3.0", "Industry 4.0", "Internet of Things", "Multiexperience", "Big Data", "Crypto", "[Insert bullshit here] as a service", "Emerging Market", "Streamline"];
const buzzwords = ["Cloud", "Cyber-[Something]", "Distrupt[ive]", "AI", "Meta [Something]", "Gamification", "Web 2.0/3.0", "Industry 4.0", "Internet of Things", "Multiexperience", "Big Data", "Crypto", "[Something] as a service", "Emerging [Something]", "Streamline", "Ecosystem", "Leverage", "Outside the Box", "Pivot", "Strategic", "Agile", "Smart Tech", "Data Warehouse"];
const [items, setItems] = React.useState(buzzwords);
const sizeError = ((items.length % size) != 0);
return(