/* @refresh reload */ import { type Component } from "solid-js"; import type { ChildProps } from "../types/types"; const Row: Component = ({ children, className }) => { return
{ children }
} export default Row;