25 lines
517 B
TypeScript
25 lines
517 B
TypeScript
|
/*
|
||
|
// Date: 2023-03-07
|
||
|
// Developer: Hyperling
|
||
|
// Purpose: Provide a UI for folks to log a food diary, providing a simple way
|
||
|
// to enter the data and an easy way to filter/sort what caused issues.
|
||
|
// Resources: Most helpful tutorials when learning Typescript and React.
|
||
|
// https://blog.logrocket.com/how-use-typescript-react-tutorial-examples/
|
||
|
*/
|
||
|
|
||
|
// Attach all the needed helperss.
|
||
|
import "src/includes.ts";
|
||
|
|
||
|
/* DB Setup */
|
||
|
|
||
|
|
||
|
|
||
|
/* Test Code */
|
||
|
// Just playing with the DB until learning React.
|
||
|
|
||
|
|
||
|
|
||
|
/* Main, UI */
|
||
|
|
||
|
|