/* eslint-disable @typescript-eslint/no-explicit-any */
import styles from './invest-process.module.scss'

interface InvestProcessProps {
  title: any;
  content: any;
}

const InvestProcess = ({ title, content }: InvestProcessProps) => {
  return (
    <div className={styles['invest__process']}>
      <h1>{title}</h1>
      <p>{content}</p>
    </div>
  )
}

export default InvestProcess
