Skip to content

Commit

Permalink
chore: website open module (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Timeless0911 authored Nov 8, 2023
1 parent d4077a6 commit 35b55e2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion website/src/components/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ export const Content = (props: { productIndex: string; menuIndex: string }) => {
</div>
);
}
if (props.productIndex !== PRODUCT.MODERNJS_FRAMEWORK) {
if (
props.productIndex !== PRODUCT.MODERNJS_FRAMEWORK &&
props.productIndex !== PRODUCT.MODERNJS_MODULE
) {
return <div style={{ padding: BASE_PADDING }}>WIP</div>;
}
switch (props.menuIndex) {
Expand Down

0 comments on commit 35b55e2

Please sign in to comment.