Co-authored-by: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com> Reviewed-on: #1
11 lines
183 B
JavaScript
11 lines
183 B
JavaScript
import style from './Grid.module.css'
|
|
|
|
export default function Grid ({ columns, children }) {
|
|
return (
|
|
<div
|
|
className={style.grid}
|
|
>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|