mirror of
https://github.com/mue/mue.git
synced 2026-07-23 00:37:27 +02:00
refactor: make modals like widgets
This commit is contained in:
14
src/components/modals/main/settings/ResetModal.jsx
Normal file
14
src/components/modals/main/settings/ResetModal.jsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import React from 'react';
|
||||
|
||||
export default function ResetModal(props) {
|
||||
return (
|
||||
<div className='welcomeContent'>
|
||||
<span className='closeModal' onClick={props.modalClose}>×</span>
|
||||
<div className='welcomeModalText'>
|
||||
reset text
|
||||
<button className='close' onClick={props.modalClose}>yes</button>
|
||||
<button className='close' onClick={props.modalClose}>no</button>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user