From 54a27fb52551069fa6d40c6f5941c5d49c0f0506 Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Thu, 25 Aug 2022 11:52:33 +0530 Subject: admin UI improvement and back button added --- admin/src/components/BackButton/BackButton.jsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 admin/src/components/BackButton/BackButton.jsx (limited to 'admin/src/components/BackButton/BackButton.jsx') diff --git a/admin/src/components/BackButton/BackButton.jsx b/admin/src/components/BackButton/BackButton.jsx new file mode 100644 index 0000000..ff99eb6 --- /dev/null +++ b/admin/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