mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01: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>;
|
|
});
|