initialize prototype and hooks

This commit is contained in:
bedlam343 2024-03-30 13:17:41 -07:00
parent 09409907e2
commit ba5b59b0bc
6 changed files with 59 additions and 1 deletions

View File

@ -1,7 +1,8 @@
import Prototype from "src/components/Prototype";
import "src/App.css";
const App = () => {
return <div>App</div>;
return <Prototype />;
};
export default App;

View File

@ -0,0 +1,5 @@
const Prototype = () => {
return <div>Prototype</div>;
};
export default Prototype;

View File

@ -0,0 +1,12 @@
type AssimilatorProps = {
// define expected input here and it's type (number, string, etc.)
};
/**
* @description ???
* @param ???
* @returns ???
*/
const useAssimilator = ({}: AssimilatorProps) => {};
export default useAssimilator;

12
src/hooks/useMonitor.ts Normal file
View File

@ -0,0 +1,12 @@
type MonitorProps = {
// define expected input here and it's type (number, string, etc.)
};
/**
* @description ???
* @param ???
* @returns ???
*/
const useMonitor = ({}: MonitorProps) => {};
export default useMonitor;

View File

@ -0,0 +1,14 @@
type RestrainerProps = {
// define expected input here and it's type (number, string, etc.)
visualComplexity: number;
// add more as needed
};
/**
* @description ???
* @param ???
* @returns ???
*/
const useRestrainer = ({ visualComplexity }: RestrainerProps) => {};
export default useRestrainer;

14
src/hooks/useSelector.ts Normal file
View File

@ -0,0 +1,14 @@
type SelectorProps = {
// define expected input here and it's type (number, string, etc.)
};
/**
* @description ???
* @param ???
* @returns ???
*/
const useSelector = ({}: SelectorProps) => {
console.log("useSelector");
};
export default useSelector;