NewTopicsTopic

Один topic из блока NewTopics

Props

slug

  • type: string
  • required: true

slug (friendly_url) используется для ссылки на топик

pinned

  • type: boolean
  • default: false

закрепленная ли тема

voting

  • type: boolean
  • default: false

есть ли голосование в теме

topic

  • type: string
  • required: true

название темы

postedAt

  • type: date
  • required: true

Дата публикации темы

commentsCount

  • type: number
  • required: true

Количество комментариев

Test data

import type { NewTopicsTopic } from '../types';

export const testTopic: NewTopicsTopic = {
  id: 5809,
  topic: 'Технические работы – ноябрь 2022',
  pinned: true,
  voting: true,
  postedAt: new Date(1667284793000),
  commentsCount: 35,
  slug: '5809-tehnicheskie-raboty-noyabr-2022',
};