React app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 line
341 B

  1. import React from "react";
  2. import styles from './Summary.module.scss';
  3. export const Summary: React.FC = () => {
  4. return <section>
  5. <section className={styles.upfold}>
  6. <h4> Revision Completed </h4>
  7. <div className={styles.medalHolder}>
  8. </div>
  9. </section>
  10. </section>
  11. }