bp_wb/frontend/components/base/Row.tsx

11 lines
253 B
TypeScript

import React from 'react';
export interface RowProps {
children?: React.ReactNode;
className?: string;
}
export const Row: React.FC<RowProps> = ({ children, className = '' }) => {
return <div className={`row ${className}`}>{children}</div>;
};