mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-26 06:54:18 +00:00
15 lines
322 B
JavaScript
15 lines
322 B
JavaScript
|
import React from "react"
|
||
|
import BoxFull from "../base/BoxFull"
|
||
|
|
||
|
|
||
|
export default function BoxVisualizationGraph({ children, className, ...props }) {
|
||
|
// TODO: translate this
|
||
|
// TODO: implement this
|
||
|
|
||
|
return (
|
||
|
<BoxFull header={"Hourly graph"} {...props}>
|
||
|
{children}
|
||
|
</BoxFull>
|
||
|
)
|
||
|
}
|