File size: 175 Bytes
ca056f0
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import React from "react";

const About = () => {
 return (
    <div>
      <h1>About</h1>
      <p>This is a simple todo list app</p>
    </div>
 );
};

export default About;