learnhouse/front/components/StyledElements/Toast/Toast.tsx
2023-06-22 18:26:25 +02:00

12 lines
No EOL
171 B
TypeScript

'use client';
import React from 'react'
import { Toaster } from 'react-hot-toast';
function Toast() {
return (
<><Toaster /></>
)
}
export default Toast