diff --git a/src/components/Disclosure/index.tsx b/src/components/Disclosure/index.tsx index 7c61c02..38437fa 100644 --- a/src/components/Disclosure/index.tsx +++ b/src/components/Disclosure/index.tsx @@ -1,11 +1,12 @@ import React, { Component } from 'react' import TypoGraphy from '@mui/material/Typography'; -import PropTypes from 'prop-types' //ES6 import styles from './styles.module.css'; import constants from '@lib/constants' import {SITE_CONT_TYPE} from '@lib/constants' -export default function Disclosure(props:any) { +interface DisclosureProps {} + +export default function Disclosure(props: DisclosureProps) { return ( @@ -32,8 +33,3 @@ export default function Disclosure(props:any) { ) } - - -Disclosure.propTypes = { - -};