11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
|
import * as React from "react";
|
||
|
|
||
|
class main extends React.Component<{}, {}> {
|
||
|
render () {
|
||
|
return <div> The component for the main content</div>;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default main;
|
||
|
|