This PR implements: * Fade-in transitions when cells load in, making navigation and loading appear less janky. * When scrolling, skeleton reps show up before the actual ones load in. * Resetting filters will also reset any set inclusions or exclusions
12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
import React from 'react'
|
|
import styles from './index.module.scss'
|
|
|
|
interface Props {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
const GridRepCollection = (props: Props) => {
|
|
return <div className={styles.collection}>{props.children}</div>
|
|
}
|
|
|
|
export default GridRepCollection
|