Skip to content

Commit

Permalink
feat: feat:Menu组件
Browse files Browse the repository at this point in the history
  • Loading branch information
panyushan-jade committed Jun 20, 2022
1 parent 38b722b commit efd4062
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/components/Menu/Menu.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from "react";

export interface IMenuProps {
className?: string;
}

const Menu: React.FC<IMenuProps> = (props) => {
console.log("props: ", props);
return <div>Menu</div>;
};

export default Menu;

0 comments on commit efd4062

Please sign in to comment.