11 lines
240 B
TypeScript
11 lines
240 B
TypeScript
import React from 'react';
|
|
import { DeviceState } from '../../hooks/voice-state';
|
|
|
|
export default function DisplayDeviceState({deviceState}: {deviceState: DeviceState})
|
|
{
|
|
return(
|
|
<div>
|
|
Device is currently {deviceState}.
|
|
</div>
|
|
);
|
|
} |