Echo Writes Code

Hive.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import styles from './Directory.module.css';

import type { Component } from 'solid-js';
import { For } from 'solid-js';

interface HiveProps {
  database: Database;
}

interface Database {
  entries: DatabaseEntry[];
  tags: string[];
}

interface DatabaseEntry {
  name: string;
  link: string;
  summary: string;
  tags: string[];
}

const Hive: Component = (props: HiveProps) => {
  return (
    <>
      <ul>
        <For each={ props.database.entries }>
          { (item, index) => (
            <>
              <h3><a href={ item.link }>{ item.name }</a></h3>
              <p>{ item.summary }</p>
            </>
          ) }
        </For>
      </ul>
    </>
  );
};

export default Hive;