mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-01-20 18:23:01 -08:00
9dc879235f
* initial devices.json * initial hardware components * testing page at /docs/hardware/supported/template * WIP Changes * Home page work & updates * Fix build * Fix external link button * Setup linting * rename, cleanup & lint * seperate lint cmd for now Co-authored-by: Foster Irwin <foster@jfirwin.com> Co-authored-by: Sacha Weatherstone <sachaw100@hotmail..om>
26 lines
681 B
TypeScript
26 lines
681 B
TypeScript
import React from 'react';
|
|
|
|
export const BatteryCalculator = (): JSX.Element => {
|
|
return (
|
|
<div className="card">
|
|
<div className="card__header">
|
|
<h3>Battery Calculator</h3>
|
|
</div>
|
|
<div className="card__body" style={{ display: 'flex', gap: '2rem' }}>
|
|
<div>
|
|
<input placeholder="Search" />
|
|
<input placeholder="Search" />
|
|
<input placeholder="Search" />
|
|
<input placeholder="Search" />
|
|
</div>
|
|
<div></div>
|
|
</div>
|
|
<div className="card__footer">
|
|
<button className="button button--secondary button--block">
|
|
See All
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|