import React from 'react'; import './GridLayout.scss'; import { ContainerProps, RowProps, ColProps } from './types'; export const Container: React.FC = ({ children, fluid = false, gap = '0px', }) => { const className = fluid ? 'ff-container-fluid' : 'ff-container'; return (
{children}
); }; export const Row: React.FC = ({ children, gap = '0px' }) => { return (
{children}
); }; export const Col: React.FC = ({ children, size = 12 }) => { const className = `ff-col-${size}`; return
{children}
; };