diff --git a/src/components/LeftNav.jsx b/src/components/LeftNav.jsx new file mode 100644 index 0000000..d6fed9d --- /dev/null +++ b/src/components/LeftNav.jsx @@ -0,0 +1,20 @@ +import React from "react"; +import { GoChevronLeft } from "react-icons/go"; + +const LeftNav = React.memo(({ disabled, onClick }) => { + return ( + + ); +}); + +LeftNav.displayName = "LeftNav"; + +export default LeftNav; diff --git a/src/components/PlayPause.jsx b/src/components/PlayPause.jsx new file mode 100644 index 0000000..74a200a --- /dev/null +++ b/src/components/PlayPause.jsx @@ -0,0 +1,25 @@ +import React from "react"; +// import { bool, func } from "prop-types"; +// import SVG from "src/components/SVG"; + +const PlayPause = React.memo(({ isPlaying, onClick }) => { + return ( + + ); +}); + +PlayPause.displayName = "PlayPause"; + +// PlayPause.propTypes = { +// isPlaying: bool.isRequired, +// onClick: func.isRequired, +// }; + +export default PlayPause; diff --git a/src/components/RightNav.jsx b/src/components/RightNav.jsx new file mode 100644 index 0000000..f70828c --- /dev/null +++ b/src/components/RightNav.jsx @@ -0,0 +1,19 @@ +import React from "react"; +import { GoChevronRight } from "react-icons/go"; +const RightNav = React.memo(({ disabled, onClick }) => { + return ( + + ); +}); + +RightNav.displayName = "RightNav"; + +export default RightNav; diff --git a/src/pages/Experience.jsx b/src/pages/Experience.jsx index 3318e39..f5fad20 100644 --- a/src/pages/Experience.jsx +++ b/src/pages/Experience.jsx @@ -53,10 +53,12 @@ function Experiance() { return (