import React from 'react' import { Button, Checkbox, Column, Paragraph, Row, Text } from '../../atoms' import { CreditMobilLayout } from '../../Layout/CreditMobilLayout' import { textTerms } from './helpers' import styles from './TermsAndCondition.module.css' interface TermsAndConditionProps { onChange: (e: React.ChangeEvent) => void checked: boolean } export const TermsAndCondition: React.FC = ({ onChange = () => { }, checked = false }) => { return (
Firma el contrato de credimóvil
{textTerms}
) }