From 83617bdfca295f3cf55b399d8e7363d38ec57261 Mon Sep 17 00:00:00 2001 From: Don Strawsburg Date: Tue, 4 Feb 2025 14:16:25 -0500 Subject: [PATCH] changes during migration --- src/components/Disclosure/index.tsx | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) 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 = { - -};