| export default function DosingPanel({ data }: { data: Record<string, unknown> }) { | |
| return ( | |
| <section className="panel"> | |
| <h3>Precision Dosing</h3> | |
| <pre>{JSON.stringify(data, null, 2)}</pre> | |
| </section> | |
| ); | |
| } | |
| export default function DosingPanel({ data }: { data: Record<string, unknown> }) { | |
| return ( | |
| <section className="panel"> | |
| <h3>Precision Dosing</h3> | |
| <pre>{JSON.stringify(data, null, 2)}</pre> | |
| </section> | |
| ); | |
| } | |