mirror of
https://github.com/pgsty/minio.git
synced 2026-08-02 16:45:57 +03:00
Browser: Update UI with new components and elements (#5671)
This commit is contained in:
@@ -15,29 +15,27 @@
|
||||
*/
|
||||
|
||||
import React from "react"
|
||||
import MobileHeader from "./MobileHeader"
|
||||
import Header from "./Header"
|
||||
import SidebarBackdrop from "./SidebarBackdrop"
|
||||
import ObjectsSection from "../objects/ObjectsSection"
|
||||
import MainActions from "./MainActions"
|
||||
import BucketPolicyModal from "../buckets/BucketPolicyModal"
|
||||
import MakeBucketModal from "../buckets/MakeBucketModal"
|
||||
import UploadModal from "../uploads/UploadModal"
|
||||
import ObjectsBulkActions from "../objects/ObjectsBulkActions"
|
||||
import Dropzone from "../uploads/Dropzone"
|
||||
|
||||
export const MainContent = () => (
|
||||
<div className="fe-body">
|
||||
<ObjectsBulkActions />
|
||||
<MobileHeader />
|
||||
export const MainContent = ({ sidebarOpen }) => (
|
||||
<section className="content">
|
||||
<Header />
|
||||
<Dropzone>
|
||||
<Header />
|
||||
<ObjectsSection />
|
||||
</Dropzone>
|
||||
<MainActions />
|
||||
<BucketPolicyModal />
|
||||
<MakeBucketModal />
|
||||
<UploadModal />
|
||||
</div>
|
||||
<SidebarBackdrop />
|
||||
</section>
|
||||
)
|
||||
|
||||
export default MainContent
|
||||
|
||||
Reference in New Issue
Block a user