mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
|
import Component from '@glimmer/component';
|
||
|
|
||
|
export default class PostsList extends Component {
|
||
|
get list() {
|
||
|
return this.args.list;
|
||
|
}
|
||
|
}
|