Skip to content

Commit

Permalink
fix(flat-component): fix type error (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
crimx committed Mar 16, 2021
1 parent 51f61d8 commit c85f687
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import "./style.less";

import React from "react";
import { observer } from "mobx-react-lite";
import { CloudStorageFileList } from "./CloudStorageFileList";

export interface CloudStorageProps {}

export const CloudStorage = observer<CloudStorageProps>(function CloudStorage() {
return <CloudStorageFileList files={[]} />;
// @TODO
return <></>;
});

0 comments on commit c85f687

Please sign in to comment.