aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/pages/timeline/TimelinePostContainer.tsx
blob: 4697268b6f93fa5d60ccb5a1cf7b3b4cd757d1df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { ReactNode } from "react";
import classNames from "classnames";

import "./TimelinePostContainer.css";

export interface TimelinePostEditCardProps {
  className?: string;
  children?: ReactNode;
}

export default function TimelinePostContainer({
  className,
  children,
}: TimelinePostEditCardProps) {
  return (
    <div className={classNames("timeline-post-container", className)}>
      {children}
    </div>
  );
}