/
guselnikov
/
inst
Обзор
Документация
Войти
/
guselnikov
/
inst
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
admin/src/pages/posts/PostsTabPages.tsx
22 строки
556 B
Viktor Guselnikov
first_commit
07 июл 2026, 11:54
07 июл 2026, 11:54
098126a
Код
Авторство
О чём код?
import { Navigate } from 'react-router-dom'; import { AutoPostPage } from '../AutoPostPage'; export function PostsUploadPage() { return <AutoPostPage section="composer" embedded />; } export function PostsGridPage() { return <AutoPostPage section="grid" embedded />; } export function PostsCalendarPage() { return <AutoPostPage section="calendar" embedded />; } export function PostsQueuePage() { return <AutoPostPage section="queue" embedded />; } export function PostsIndexRedirect() { return <Navigate to="/posts/templates" replace />; }