This is an extension which create a ts fc component like below:
import React, { FC } from 'react';
export interface ComponentNameProps {
}
const ComponentName: FC = () => {
return (
<div>
Hello ComponentName
</div>
);
};
export default ComponentName;
rtfc
And also supporting some antd component and ahooks snippets


| Prefix | Snippet |
|---|---|
| ui | useInterval |
| uto | useTimeout |
| ub | useBoolean |
| uls | useLocalStorageState |
| usz | useSize |
| Prefix | Snippets |
|---|---|
| umv | const [ModalVisible, setModalVisible] = useState(false); |
| amodal | antd modal component |
