2023-01-07 16:01:53 +01:00
|
|
|
/* @refresh reload */
|
|
|
|
import { type Component } from "solid-js";
|
2023-04-08 12:05:08 +02:00
|
|
|
import type { ChildProps } from "../types/types";
|
2023-01-07 16:01:53 +01:00
|
|
|
|
|
|
|
const Row: Component<ChildProps> = ({ children, className }) => {
|
|
|
|
return <div class={ `flex-row-center ${ className }` }>{ children }</div>
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Row;
|