/* eslint-disable react/no-children-prop */
import type React from 'react';

import Card from '../../Components/UI/Card/Card';
import styles from './InsightsContent.module.scss';

const DashboardContent: React.FC = (): JSX.Element => (
	<div className={styles.dashboardContent}>
		<div className={styles.cardContainer}>
			<Card children="Some text, Some other text" />
			<Card children="Some text Some other text" />
			<Card children="Some text  Some other text" />
			<Card children="Some text  Some other text" />
			<Card children="Some text  Some other text" />
			<Card children="Some text  Some other text" />
		</div>
	</div>
);

export default DashboardContent;
