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