diff --git a/src/components/footer/FooterMenu.tsx b/src/components/footer/FooterMenu.tsx new file mode 100644 index 0000000..8c83a42 --- /dev/null +++ b/src/components/footer/FooterMenu.tsx @@ -0,0 +1,35 @@ +import React, { useState } from 'react' + +interface IFooterMenuProps{ + title: string; + content1: string; + content2: string; + content3: string; + content4: string; +} + +const FooterMenu = (props: IFooterMenuProps) => { + const [isActive, setIsActive] = useState(false) + + return ( +