/* a test component for tab home content */ import React from 'react'; //props are not decided so just use any for now export default function TabHomeConent(props: any) { return ( <>

This is a test for making a sidebar tab contents to be a sub-comopnent of Tab-Home

Testing props (for example, id & header):
props.id = {props.id}
props.header = {props.header}

); }