11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
import { ViewNotification } from '@/module/notification';
|
|
import React from 'react';
|
|
|
|
function Page() {
|
|
return (
|
|
<ViewNotification />
|
|
);
|
|
}
|
|
|
|
export default Page;
|