EverydayTech Platform - Developer Reference
Complete Source Code Documentation - All Applications
Loading...
Searching...
No Matches
RootTenantControl.jsx
Go to the documentation of this file.
1// RootTenantControl.jsx
2// Simple control for root tenant actions/visibility
3import React from 'react';
4import { apiFetch } from '../lib/api';
5
6export default function RootTenantControl() {
7 return (
8 <div style={{
9 background: '#f5f5f5',
10 border: '1px solid #e0e0e0',
11 borderRadius: 6,
12 padding: '8px 16px',
13 margin: '12px 0',
14 color: '#333',
15 fontWeight: 500,
16 display: 'flex',
17 alignItems: 'center',
18 gap: 8
19 }}>
20 <span className="material-symbols-outlined" style={{color:'#0066cc'}}>verified_user</span>
21 <span>Root Tenant: You have full access to all tenants and data.</span>
22 </div>
23 );
24}