aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/main.js
blob: b359105ed2d29c621b3af13cdaeb7407130fd41c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import React from 'react';

import "../App.css"
import "./main.css";
import { Link } from 'react-router-dom';

export default function Main(props) {


return (
    <main>
        <h1>{props.text}</h1>
    </main>
        )
}