UNPKG

@sassoftware/cra-template-viya-app-quickstart

Version:
17 lines (13 loc) 429 B
import React , {useContext} from 'react'; import { useLocation } from 'react-router-dom'; import {useAppContext} from '../../providers'; function PlaceHolder (props) { let r = useAppContext(); let show = <div id="page-wrap"> <pre> {JSON.stringify(useLocation().state, null, 4)} </pre> <pre> {JSON.stringify(props, null,4)}</pre> </div>; return show; } export default PlaceHolder;