blob: 18b0f5ac3ffa6e53f315c714c9452ae2285116d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import React from 'react';
import "../App.css"
import "./main.css";
export default function Main(props) {
return (
<main>
<h1>{props.text}</h1>
</main>
)
}
|