Class Componant
import React,{Component} from "react";
export default class TestClass extends Component {
render() {
function One() {
return<><h1>One</h1></>
}
function Two() {
return<><h1>Two</h1></>
}
return <>
<h1>computer</h1>
<One/>
<Two/>
</>;
}
}
export function Test1() {
return<></>
}
export function Test() {
return<></>
}
Comments
Post a Comment