Farmbot-Web-App/frontend/ui/widget_footer.tsx

12 lines
227 B
TypeScript
Raw Normal View History

2017-07-03 14:59:36 -06:00
import * as React from "react";
interface WidgetFooterProps {
children?: React.ReactNode;
2017-07-03 14:59:36 -06:00
}
export function WidgetFooter(props: WidgetFooterProps) {
2017-08-28 05:44:37 -06:00
return <div className="widget-footer">
{props.children}
</div>;
2017-07-03 14:59:36 -06:00
}