Files
shishirpatil--gorilla/agent-arena/client/src/components/StaticFileInput.js
T
wehub-resource-sync bbfc60cd69
Publish BFCL to PyPI / build_and_publish (push) Has been cancelled
Update API Zoo Data / send-updates (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:37:27 +08:00

12 lines
399 B
JavaScript

import React from 'react';
import './StaticFileInput.css'; // Create and import this CSS file for styling
const StaticFileInput = ({ filename }) => (
<div className="custom-file">
<input type="file" className="custom-file-input" disabled style={{ display: 'none' }} />
<label className="custom-file-label static-file-label">{filename}</label>
</div>
);
export default StaticFileInput;