blob: 9dc211b2769cd4190622cd48fa35549f2fa69f8b (
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";
interface TimelinePostContainerProps {
className?: string;
children?: ReactNode;
}
export default function TimelinePostContainer({
className,
children,
}: TimelinePostContainerProps) {
return (
<div className={classNames("timeline-post-container", className)}>
{children}
</div>
);
}
|