import React from 'react' import { List, Button, Card } from 'semantic-ui-react' import { Link } from 'react-router-dom' import { shortenAddress } from '../utils/orbitdb' export default function BoardsItem({ address, title, name }) { return { title || 'Unnamed board' } Board Name {name} Address {address} }