mirror of
https://github.com/sasjs/server.git
synced 2026-01-08 23:10:05 +00:00
chore(refactor): remove sasjs from components name, just use Studio, Drive etc
This commit is contained in:
20
web/src/containers/Drive/index.tsx
Normal file
20
web/src/containers/Drive/index.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import React, { useState } from 'react'
|
||||
|
||||
import CssBaseline from '@mui/material/CssBaseline'
|
||||
import Box from '@mui/material/Box'
|
||||
|
||||
import SideBar from './sideBar'
|
||||
import Main from './main'
|
||||
|
||||
const Drive = () => {
|
||||
const [selectedFilePath, setSelectedFilePath] = useState('')
|
||||
return (
|
||||
<Box sx={{ display: 'flex' }}>
|
||||
<CssBaseline />
|
||||
<SideBar setSelectedFilePath={setSelectedFilePath} />
|
||||
<Main selectedFilePath={selectedFilePath} />
|
||||
</Box>
|
||||
)
|
||||
}
|
||||
|
||||
export default Drive
|
||||
Reference in New Issue
Block a user