15 lines
No EOL
268 B
TypeScript
15 lines
No EOL
268 B
TypeScript
import React from 'react';
|
|
import { withRouter } from 'react-router-dom';
|
|
|
|
interface Props {
|
|
|
|
}
|
|
function FunnelDetails(props: Props) {
|
|
return (
|
|
<div>
|
|
Create View/Detail View
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default withRouter(FunnelDetails); |