7 lines
242 B
TypeScript
7 lines
242 B
TypeScript
import * as React from "react";
|
|
import { Item, ItemImageProps } from "semantic-ui-react";
|
|
|
|
export default function DeviceImage(props: ItemImageProps) {
|
|
return <Item.Image {...props} src={require("@client/images/raspberry_pi.png")} />;
|
|
}
|