10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
import React, { createContext, PropsWithChildren } from 'react';
|
|
|
|
type ResourceContextType = {
|
|
basePath: string,
|
|
}
|
|
|
|
export const ResourceContext = createContext<ResourceContextType>(
|
|
{} as ResourceContextType
|
|
);
|