Not mentioned in the terms and conditions:
Do I still enter the raffle if I debug the day after it was released? What are the cutoff dates?
Not mentioned in the terms and conditions:
Do I still enter the raffle if I debug the day after it was released? What are the cutoff dates?
I’ve started to code-golf my solutions to create a bit more of a challenge
I’ve started to code-golf my solutions to create a bit more of a challenge
```tsx
'use client';
import { registerMasonry } from 'masonry-pf';
function Masonry({ children }: PropsWithChildren) {
return (
<div
className="grid grid-rows-[masonry] grid-cols-1 md:grid-cols-3 gap-4"
ref={registerMasonry}
>
{children}
</div>
);
}
```
```tsx
'use client';
import { registerMasonry } from 'masonry-pf';
function Masonry({ children }: PropsWithChildren) {
return (
<div
className="grid grid-rows-[masonry] grid-cols-1 md:grid-cols-3 gap-4"
ref={registerMasonry}
>
{children}
</div>
);
}
```
Thanks to @mattpocock.com for his awesome article on how to create an NPM package. It helped me quickly set up an npm package with changesets, which I had been wanting to try out.
Thanks to @mattpocock.com for his awesome article on how to create an NPM package. It helped me quickly set up an npm package with changesets, which I had been wanting to try out.