Skip to content

Instantly share code, notes, and snippets.

@Daltonic
Created July 18, 2023 13:10
Show Gist options
  • Save Daltonic/39fe3ecb273a3c4e63c64a24b8bdbe66 to your computer and use it in GitHub Desktop.
Save Daltonic/39fe3ecb273a3c4e63c64a24b8bdbe66 to your computer and use it in GitHub Desktop.
Dapp Breeds
import React from 'react'
const Spacer = ({ spaces }) => {
const range = Array.from({ length: spaces }, (_, index) => index)
return (
<div>
{range.map((_, i) => (
<div key={i} className="h-10" />
))}
</div>
)
}
export default Spacer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment