> For the complete documentation index, see [llms.txt](https://docs.minical.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.minical.io/build-an-extension/build-your-first-extension/assets.md).

# Assets

This folder has two subfolders CSS and js, As clear by its name all the js files (.js extension) or third-party files will reside here. And all CSS files custom or third-party will reside here.

```
---->asset
    |---->js
    |---->css
```

Here is the JS file

```javascript
//file name booking_list.js
$(document).ready(function () {
    $('#booling_list').DataTable();
    $('#customer_list').DataTable();
});
j
```

CSS file

```css
/* File name extension.css */
.nav-color{
    background-color: #337ab7 !important;
}
```
