8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
/** @format */
|
|
import { FunctionComponent } from "react";
|
|
|
|
const Bucket: FunctionComponent = () => {
|
|
return <div>存储桶</div>;
|
|
};
|
|
export default Bucket;
|