11 lines
175 B
TypeScript
11 lines
175 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
export const HomePage = () => (
|
||
|
<div>
|
||
|
<div>
|
||
|
<h2>Unanswered Questions</h2>
|
||
|
<button>Ask a question</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|