My Cloud Files
Report_Q1.pdf
1.2 MB
Report_Q2.pdf
1.2 MB
Report_Q3.pdf
1.2 MB
Report_Q4.pdf
1.2 MB
Report_Q5.pdf
1.2 MB
Report_Q6.pdf
1.2 MB
Report_Q7.pdf
1.2 MB
Report_Q8.pdf
1.2 MB
Project: WebApp v1.0
Project Structure
Version Control
Current Branch: main
Last Commit: #abcdef12 (3 days ago)
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
views | Folder | - | 2025-06-10 14:30 | |
UserController.php | PHP File | 12 KB | 2025-06-12 09:15 (Commit: #12ab) | |
app.js | JavaScript File | 5 KB | 2025-06-08 10:00 | |
README.md | Markdown File | 2 KB | 2025-06-01 18:00 (Commit: #a7f9) |
My Files
Storage
15.4 GB of 100 GB used
15%
My Drive > Documents
selected
f !== 'work') : selectedFiles.push('work')"
@contextmenu.prevent="contextMenu = { show: true, x: $event.clientX, y: $event.clientY }"
:class="{ 'bg-blue-50 border-blue-200': selectedFiles.includes('work') }"
class="relative p-3 border border-gray-200 rounded-lg bg-white hover:border-blue-300 cursor-pointer">
Work Projects
12 items
f !== 'personal') : selectedFiles.push('personal')"
@contextmenu.prevent="contextMenu = { show: true, x: $event.clientX, y: $event.clientY }"
:class="{ 'bg-blue-50 border-blue-200': selectedFiles.includes('personal') }"
class="relative p-3 border border-gray-200 rounded-lg bg-white hover:border-blue-300 cursor-pointer">
Personal
8 items
f !== 'report') : selectedFiles.push('report')"
@contextmenu.prevent="contextMenu = { show: true, x: $event.clientX, y: $event.clientY }"
:class="{ 'bg-blue-50 border-blue-200': selectedFiles.includes('report') }"
class="relative p-3 border border-gray-200 rounded-lg bg-white hover:border-blue-300 cursor-pointer">
Annual Report.pdf
2.4 MB · 3 days ago
f !== 'presentation') : selectedFiles.push('presentation')"
@contextmenu.prevent="contextMenu = { show: true, x: $event.clientX, y: $event.clientY }"
:class="{ 'bg-blue-50 border-blue-200': selectedFiles.includes('presentation') }"
class="relative p-3 border border-gray-200 rounded-lg bg-white hover:border-blue-300 cursor-pointer">
Q2 Presentation.pptx
5.1 MB · 1 week ago
f !== 'budget') : selectedFiles.push('budget')"
@contextmenu.prevent="contextMenu = { show: true, x: $event.clientX, y: $event.clientY }"
:class="{ 'bg-blue-50 border-blue-200': selectedFiles.includes('budget') }"
class="relative p-3 border border-gray-200 rounded-lg bg-white hover:border-blue-300 cursor-pointer">
Budget 2023.xlsx
1.8 MB · 2 weeks ago
f !== 'profile') : selectedFiles.push('profile')"
@contextmenu.prevent="contextMenu = { show: true, x: $event.clientX, y: $event.clientY }"
:class="{ 'bg-blue-50 border-blue-200': selectedFiles.includes('profile') }"
class="relative p-3 border border-gray-200 rounded-lg bg-white hover:border-blue-300 cursor-pointer">
Profile Picture.jpg
1.2 MB · 1 month ago
Name | Modified | Size | Actions |
---|---|---|---|
Work Projects
|
3 days ago | - | |
Personal
|
1 week ago | - | |
Annual Report.pdf
|
3 days ago | 2.4 MB | |
Q2 Presentation.pptx
|
1 week ago | 5.1 MB | |
Budget 2023.xlsx
|
2 weeks ago | 1.8 MB |
Create new folder
Upload files
or drag and drop
PNG, JPG, PDF up to 10MB
Project Files
my-awesome-project
src
App.js
index.js
components
Button.js
Card.js
package.json
README.md
main
My Awesome Project
This is a sample project demonstrating a file manager UI for code repositories.
Features
- File tree navigation
- Tabbed interface
- Syntax highlighting
- Terminal integration
Installation
npm install
npm start
{
"name": "my-awesome-project",
"version": "1.0.0",
"description": "A sample project demonstrating file manager UI",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"jest": "^27.0.6"
}
}
import React from 'react';
import Button from './components/Button';
import Card from './components/Card';
function App() {
return (
<div className="App">
<h1>Welcome to My App</h1>
<Card>
<Button>Click Me</Button>
</Card>
</div>
);
}
export default App;
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
import React from 'react';
function Button({ children }) {
return (
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
{children}
</button>
);
}
export default Button;
import React from 'react';
function Card({ children }) {
return (
<div className="max-w-sm rounded overflow-hidden shadow-lg p-4">
{children}
</div>
);
}
export default Card;
user@my-awesome-project
~
$ npm start
> my-awesome-project@1.0.0 start
> node index.js
Server running on http://localhost:3000
user@my-awesome-project
~
$
|