Skip to main content

How to use battery

create your app

import { Battery } from '@site/ui/Battery'
import { useBattery } from 'rexr/react'

export const App = () => {
const { level, charging } = useBattery()
return <Battery level={level} charging={charging} />
}