openreplay/frontend/app/components/Session/Layout/ToolPanel/PanelLayout.js
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

26 lines
428 B
JavaScript

import React from 'react';
import cn from 'classnames';
export function Header({
children,
className,
}) {
return (
<div
className={ cn("flex items-center justify-between border-bottom-gray-light pr-10 pl-2", className) }
style={{ height: "14%" }}
>
{ children }
</div>
);
}
export function Body({ children }) {
return (
<div style={{ height: "86%" }}>
{ children }
</div>
);
}