mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-18 06:24:25 +01:00
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import { type Component, type JSX } from 'solid-js';
|
|
|
|
type ColumnItemProps = {
|
|
children: JSX.Element;
|
|
};
|
|
|
|
const ColumnItem: Component<ColumnItemProps> = (props) => {
|
|
return <div class="overflow-hidden border-b p-1">{props.children}</div>;
|
|
};
|
|
|
|
export default ColumnItem;
|