mirror of
https://github.com/kmvan/x-prober.git
synced 2026-04-21 16:59:02 +08:00
6 lines
213 B
TypeScript
6 lines
213 B
TypeScript
import type { FC, HTMLProps } from 'react';
|
|
import styles from './multi.module.scss';
|
|
export const UiMultiColContainer: FC<HTMLProps<HTMLDivElement>> = (props) => (
|
|
<div className={styles.main} {...props} />
|
|
);
|