blob: 0dd267a86ae85892d58a8b6686370a505d08bc22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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) =>
<ChatBubble key={index} position={chatbubble.position} text={chatbubble.text}/>
)}
</>);
}
|