Skip to content
Snippets Groups Projects
index.tsx 215 B
Newer Older
  • Learn to ignore specific revisions
  • import React from "react";
    import Dandruff from "components/molecules/Dandruff";
    
    const Timeline: React.FC = () => {
      return (
        <>
          <Dandruff heading="Timeline" />
        </>
      );
    };
    
    export default Timeline;