IdenticalPathPage.tsx 372 B

12345678910111213141516
  1. import React, { FC } from 'react';
  2. type IdenticalPathPageProps= {
  3. // add props and types here
  4. }
  5. const IdenticalPathPage:FC<IdenticalPathPageProps> = (props:IdenticalPathPageProps) => {
  6. return (
  7. <div>
  8. {/* Todo: show alert */}
  9. {/* Todo: show identical path page list */}
  10. IdenticalPathPageList
  11. </div>
  12. );
  13. };
  14. export default IdenticalPathPage;