StoragePoliciesPlaceholder.tsx 305 B

12345678910111213
  1. import { Card, CardContent } from 'ui'
  2. const StoragePoliciesPlaceholder = () => (
  3. <Card>
  4. <CardContent>
  5. <p className="text-sm text-foreground-lighter">
  6. Create a bucket first to start writing policies
  7. </p>
  8. </CardContent>
  9. </Card>
  10. )
  11. export default StoragePoliciesPlaceholder