mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
|
|
export const EstimateSearch: FC = observer(() => {
|
|
// hooks
|
|
const {} = {};
|
|
|
|
return <div>Estimate Search</div>;
|
|
});
|