7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
import { withSubComponents } from '$lib/helpers';
|
|
import Cell from './Cell.svelte';
|
|
import Grid from './Grid.svelte';
|
|
import Row from './Row.svelte';
|
|
|
|
export default withSubComponents(Grid, { Row, Cell });
|