FarmBot/Farmbot-Web-App

View on GitHub
frontend/ui/widget_footer.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import * as React from "react";

interface WidgetFooterProps {
  children?: React.ReactNode;
}

export function WidgetFooter(props: WidgetFooterProps) {
  return <div className="widget-footer">
    {props.children}
  </div>;
}