Build a Job Board component in React that displays the latest job postings from Hacker News.
Requirements:
- Display a list of job postings with the following details:
- Job title
- Company name
- Poster username
- Time posted
- Link to the job posting (if available)
- Fetch job postings from the Hacker News API.
- Show 6 job postings initially, with a button to load more.
- Clicking on the job title should open the job posting in a new tab (if a URL is provided).
- Focus on functionality over styling.
- The component should work out-of-the-box in a live React preview (e.g., CodeSandbox/Sandpack).