React/props

Button.js
impor React from "react"

const Button = (props) => {
    return(
        button className="">
            {props.title}
        /button>
    );
}

export defaul Button;

    
App.js
import React from "react";
import Button from "components/Button";

const App = () => {
    <>
        Button title="aaa" />
        Button title="bbb" />
        Button title="ccc" />
    
}
export default App;