> ## Documentation Index
> Fetch the complete documentation index at: https://docs.assistantscenter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Session Store

> Store your session and keep you from logging in every time.

```js theme={null}
new DBD.Dashboard({
    sessionStore: Object<ExpressSessionStoreModule>,
});
```

## Example Usage

```javascript theme={null}
new DBD.Dashboard({
  sessionStore: expressSessionStore,
});
```

## Props

<ParamField path="sessionStore" type="object ExpressSessionStoreModule" required>
  Express.js session store module, for example 'session-file-store', or
  'connect-mongodb-session', etc.
</ParamField>
