change to next
This commit is contained in:
25
backup/web/src/apps/setting/index.tsx
Normal file
25
backup/web/src/apps/setting/index.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import { toast, ToastContainer, Slide } from 'react-toastify';
|
||||
|
||||
export const AppProvider = () => {
|
||||
return <main className='w-full'>
|
||||
<App />
|
||||
<ToastContainer
|
||||
position="top-right"
|
||||
autoClose={3000}
|
||||
hideProgressBar
|
||||
newestOnTop
|
||||
closeOnClick
|
||||
rtl={false}
|
||||
pauseOnFocusLoss
|
||||
draggable
|
||||
pauseOnHover
|
||||
theme="light"
|
||||
transition={Slide} />
|
||||
</main>
|
||||
}
|
||||
|
||||
export const App = () => {
|
||||
return (
|
||||
<div>Studio App</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user