Skip to content

Commit 89ee194

Browse files
committed
chore(visualizer): create message wrapper component
1 parent d171411 commit 89ee194

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import type { PropsWithChildren } from "react";
2+
3+
const MessageWrapper = ({ children }: PropsWithChildren) => {
4+
return (
5+
<div className="flex items-center justify-center w-screen h-screen">
6+
{children}
7+
</div>
8+
);
9+
};
10+
11+
export default MessageWrapper;

0 commit comments

Comments
 (0)