mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
12 lines
No EOL
171 B
TypeScript
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 |