Skip to content
Snippets Groups Projects
index.tsx 432 B
Newer Older
  • Learn to ignore specific revisions
  • import React from "react";
    import styles from "./style.module.scss";
    import Container from "react-bootstrap/Container";
    
    import classNames from "classnames";
    import Dandruff from "components/molecules/Dandruff";
    
    
    danieldeng2's avatar
    danieldeng2 committed
    const ModuleResources: React.FC = () => {
    
      return (
        <Container className={classNames("p-4", styles.moduleContainer)}>
    
    danieldeng2's avatar
    danieldeng2 committed
          <Dandruff heading="Resources"/>
    
    danieldeng2's avatar
    danieldeng2 committed
    export default ModuleResources;