mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
import React from "react";
|
|
import { TutorialUIPackageContext } from "../context/TutorialUIPackageContext/index";
|
|
|
|
export const useTutorialUIPackage = () => {
|
|
const value = React.useContext(TutorialUIPackageContext);
|
|
|
|
return value;
|
|
};
|