summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/column.tsx
blob: ec6440db5f54e47a7504b8e22d57a2646d23f838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { FC, ReactNode } from 'react';

export type ColumnProps = {
  children: ReactNode | ReactNode[];
};

/**
 * Column component.
 *
 * Render the body as a column.
 */
const Column: FC<ColumnProps> = ({ children }) => {
  return <div>{children}</div>;
};

export default Column;