14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
import { AppProperties } from "$root/defaults/interfaces.ts";
|
|
|
|
type AppNavigatorProps = {
|
|
apps: Record<string, AppProperties>;
|
|
};
|
|
|
|
export default function AppNavigator(props: AppNavigatorProps) {
|
|
return (
|
|
<>
|
|
<p>{JSON.stringify(props.apps)}</p>
|
|
</>
|
|
);
|
|
}
|