chore: import upstream snapshot with attribution
Publish BFCL to PyPI / build_and_publish (push) Has been cancelled
Update API Zoo Data / send-updates (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:37:27 +08:00
commit bbfc60cd69
533 changed files with 614535 additions and 0 deletions
@@ -0,0 +1,11 @@
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;