Initial commit
This commit is contained in:
commit
7878e653a0
253 changed files with 24552 additions and 0 deletions
16
src/components/General/Popup/PopupBody.tsx
Normal file
16
src/components/General/Popup/PopupBody.tsx
Normal file
|
@ -0,0 +1,16 @@
|
|||
import React, { ReactNode } from 'react';
|
||||
import 'twin.macro';
|
||||
|
||||
export interface PopupBodyProps {
|
||||
children: ReactNode,
|
||||
}
|
||||
|
||||
export default function PopupBody({
|
||||
children,
|
||||
}: PopupBodyProps) {
|
||||
return (
|
||||
<div tw="p-4">
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue