mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
14 lines
300 B
TypeScript
14 lines
300 B
TypeScript
import * as React from 'react';
|
|
|
|
export class About extends React.Component<void, void> {
|
|
public render() {
|
|
return <div>
|
|
<h1>About</h1>
|
|
|
|
<p>This is another component.</p>
|
|
|
|
<p>It's here to demonstrate navigation.</p>
|
|
</div>;
|
|
}
|
|
}
|