index.tsx 150 B

123456789
  1. type Props = {
  2. children: React.ReactNode;
  3. };
  4. function MetricsContainer({children}: Props) {
  5. return children;
  6. }
  7. export default MetricsContainer;