import ChatBubble from "./chatbubble"; const chatbubbles = [ {position: [0,0,-3], text: "ugh. really struggling with double bleeds in my ankles. makes it hard to do very much of anything, let alone focus for my hobbies"}, {position: [-1,0,-5], text: "reddit is everywhere on google and i am sick of it... why can't there be a good forum site?"}, ]; export default function Notes() { return (<> {chatbubbles.map((chatbubble, index) => )} ); }