# Solid Job Board

Solid Job Board serves the job board component

## How to use

Once the package is installed, you can use the `solid-job-board` component:

```html
<html>
<head>
  <!-- import the module in the head of the page -->
  <script type="module" src="https://cdn.skypack.dev/@startinblox/component-job-board"></script>
</head>

<body>
  <!-- use the component -->
  <solid-job-board
    data-src="https://your.url/job-offers/"
    range-skills="https://your.url/skills/"
  ></solid-job-board>
</body>
</html>
```

### Parameters

| Name            | Default                | Description                                                  |
| --------------- | ---------------------- | :----------------------------------------------------------- |
| `data-src`      | `undefined`            | Data source of your user container |
| `extra-context` | `{}`                   | Custom extra context |
| `range-skills`      | `undefined`                   | Data source of your skills container |

## Developpers

Installation:

```bash
npm install
```

Build with:

```bash
npm run build
```

Watch files & rebuild on change with this command:

```bash
npm run watch
```
