11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import React from 'react';
|
|
|
|
import { BackstoryPageProps } from '../components/BackstoryTab';
|
|
import { CandidatePicker } from 'components/ui/CandidatePicker';
|
|
|
|
const CandidateListingPage = (props: BackstoryPageProps) => {
|
|
return <CandidatePicker {...props} />;
|
|
};
|
|
|
|
export { CandidateListingPage };
|