mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-19 06:54:23 +01:00
update
This commit is contained in:
13
src/components/ColumnItem.tsx
Normal file
13
src/components/ColumnItem.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { type Component, type JSX } from 'solid-js';
|
||||
|
||||
type ColumnItemProps = {
|
||||
children: JSX.Element;
|
||||
};
|
||||
|
||||
const ColumnItem: Component<ColumnItemProps> = (props) => {
|
||||
return (
|
||||
<div class="flex w-full flex-row gap-1 overflow-hidden border-b p-1">{props.children}</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ColumnItem;
|
||||
Reference in New Issue
Block a user