This commit is contained in:
peli 2020-06-25 17:23:41 -07:00
Родитель 1faf74aac6
Коммит f39cbabafe
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -4,7 +4,7 @@ import JacdacContext from "./Context";
function ConnectButton() {
return <JacdacContext.Consumer>
{({ bus, connectAsync, disconnectAsync }) => <Button onClick={bus ? connectAsync : disconnectAsync}>{!!bus ? "disconnect" : "connect"}</Button>}
{({ bus, connectAsync, disconnectAsync }) => <Button onClick={!bus ? connectAsync : disconnectAsync}>{!!bus ? "disconnect jacdac" : "connect jacdac"}</Button>}
</JacdacContext.Consumer>
}

Просмотреть файл

@ -1,7 +1,11 @@
import ConnectButton from "../jacdac/ConnectButton"
import JacdacComponent from "../jacdac/Component"
# Hello
<ConnectButton />
And more hello
<JacdacComponent>
This text is only visible when jacdac is connected.
</JacdacComponent>