11 lines
276 B
TypeScript
11 lines
276 B
TypeScript
import { RouteComponentProps } from '@reach/router';
|
|
import React from 'react';
|
|
|
|
const ProfilePages: React.FunctionComponent<RouteComponentProps> = ({
|
|
children,
|
|
}: React.PropsWithChildren<RouteComponentProps>) => {
|
|
return <>{children}</>;
|
|
};
|
|
|
|
export default ProfilePages;
|