change to next

This commit is contained in:
xiongxiao
2026-01-15 12:32:07 +08:00
parent 62b5c5841a
commit b2f315a459
122 changed files with 9396 additions and 9354 deletions

View 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>
)
}