This commit is contained in:
amy 2024-06-23 18:16:44 +03:30
parent 96595e6e72
commit 3518e3ae48
5 changed files with 171 additions and 16 deletions

6
src/components/comps.jsx Normal file
View file

@ -0,0 +1,6 @@
// warning: this IS horrible code. its a joke. DO NOT try this at home because
// your local senior programmer CAN and WILL hunt you down
// you have been warned.
export default function AdvancedBr({ count }) {
return new Array(count).fill(null).map(_=>(<br/>))
}