2018-08-12 11:55:15 +03:00
|
|
|
import * as React from "react";
|
|
|
|
import { Item, ItemImageProps } from "semantic-ui-react";
|
|
|
|
|
|
|
|
export default function DeviceImage(props: ItemImageProps) {
|
2018-09-02 02:57:55 -06:00
|
|
|
return (
|
|
|
|
<Item.Image {...props} src={require("@client/images/raspberry_pi.png")} />
|
|
|
|
);
|
2018-08-12 11:55:15 +03:00
|
|
|
}
|