mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 05:14:59 +00:00
16 lines
361 B
Plaintext
16 lines
361 B
Plaintext
|
import Component from "@glimmer/component";
|
||
|
|
||
|
export default class AdminConfigAreasAbout extends Component {
|
||
|
cards = [1, 2, 3];
|
||
|
|
||
|
<template>
|
||
|
<div class="admin-config-area">
|
||
|
<div class="admin-config-area__primary-content">
|
||
|
{{#each this.cards as |card|}}
|
||
|
<div>{{card}}</div>
|
||
|
{{/each}}
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
}
|