From 0a1a985de6e9a53896d2ba17e26d042009b3e1b4 Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Thu, 18 Aug 2022 16:12:35 +0530 Subject: Condtional update handling --- client/src/components/BackButton/BackButton.jsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 client/src/components/BackButton/BackButton.jsx (limited to 'client/src/components/BackButton/BackButton.jsx') diff --git a/client/src/components/BackButton/BackButton.jsx b/client/src/components/BackButton/BackButton.jsx new file mode 100644 index 0000000..c02681b --- /dev/null +++ b/client/src/components/BackButton/BackButton.jsx @@ -0,0 +1,23 @@ +import React from 'react' +import styles from './BackButton.module.css' + +const BackButton = ({ onClick, onChange }) => { + return ( + <> + + + ) +} + +export default BackButton -- cgit