Skip to content
Snippets Groups Projects
index.tsx 215 B
Newer Older
import React from "react";
import Dandruff from "components/molecules/Dandruff";

const Timeline: React.FC = () => {
  return (
    <>
      <Dandruff heading="Timeline" />
    </>
  );
};

export default Timeline;