refactor: make operator block component

This commit is contained in:
arihanv
2023-07-02 18:11:50 -05:00
parent 9e9d9eedaf
commit 7a6158584a
5 changed files with 1915 additions and 1786 deletions
@@ -0,0 +1,11 @@
import style from './OpBlock.module.scss';
type Props = {
entry: string;
}
export default function OpBlock({entry}: Props) {
return (
<div>OpBlock</div>
)
}