This repository has been archived on 2025-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
Files
old.martials.no/src/components/row.tsx

10 lines
288 B
TypeScript
Raw Normal View History

/* @refresh reload */
import { type Component } from "solid-js";
import type { ChildProps } from "../types/interfaces";
const Row: Component<ChildProps> = ({ children, className }) => {
return <div class={ `flex-row-center ${ className }` }>{ children }</div>
}
export default Row;