Newer
Older
taehui / taehui-fe / src / components / LoadingLayer.tsx
@Taehui Taehui on 17 Mar 252 bytes 2024-03-17 오후 2:12
import { ReactNode } from "react";
import { Col, Row } from "reactstrap";

export default function LoadingLayer({ children }: { children: ReactNode }) {
  return (
    <Row className="g-0">
      <Col className="m-1">{children}</Col>
    </Row>
  );
}