芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/reginaeigbe.com/folder/admin/tmp/resources/js/Admin/Pages/Themes/index.jsx
import AdminLayouts from "@/Admin/Layouts/AdminLayouts"; import { Head, Link } from "@inertiajs/react"; import "./style.scss"; export default function index({ themes }) { return (
Themes
{themes.map((theme, index) => (
{theme.is_active === "1" && (
Active:
)} {theme.name}
{theme.is_active === "1" ? (
Customize ) : (
Activate )}
))}
); }