Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A lightweight, high-performance Angular data table component with features like virtual scrolling, column freezing, and customizable templates.

## Demo [NgxSimpleDatatable](https://ngx-simple-datatable.stackblitz.io/)


![NgxSimpleDatatable Screenshot](projects/ngx-simple-datatable/assets/image.png)

Expand All @@ -19,15 +19,15 @@ A lightweight, high-performance Angular data table component with features like
## Installation

```bash
npm install ngx-simple-datatable --save
npm install ngx-simple-datatables --save
```

## Basic Usage

1. Import the module in your `app.module.ts`:

```typescript
import { NgxSimpleDatatableModule } from "ngx-simple-datatable";
import { NgxSimpleDatatableModule } from "ngx-simple-datatables";

@NgModule({
imports: [
Expand All @@ -54,7 +54,7 @@ export class AppModule {}

```typescript
import { Component } from "@angular/core";
import { ColumnConfig } from "ngx-simple-datatable";
import { ColumnConfig } from "ngx-simple-datatables";

interface UserData {
id: number;
Expand Down