_since 1.10.0_

The lists module is used for building styled list items with aligned headers and the ability to sort columns.

To use the List Module within your application, import the `ListsModule`.

```typescript
import { ListsModule } from '@my-ul/ng-porcelain';

@NgModule({
	declarations: [
		/* ... */
	],
	imports: [ListsModule],
	exports: [
		/* ... */
	]
})
export class MyApplicationModule {}
```
