mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
import * as React from 'react';
|
|
|
|
export class About extends React.Component<void, void> {
|
|
public render() {
|
|
return <div>
|
|
<h2>About</h2>
|
|
|
|
<p>Use this area to provide additional information.</p>
|
|
</div>;
|
|
}
|
|
}
|