11 lines
175 B
TypeScript
Raw Normal View History

import React from 'react';
export const HomePage = () => (
<div>
<div>
<h2>Unanswered Questions</h2>
<button>Ask a question</button>
</div>
</div>
);