Initial commit

Load this up somewhere where I can setup CI/CD
This commit is contained in:
2024-01-24 13:05:19 -05:00
commit 7119957c9e
458 changed files with 10153 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { createContext } from 'react';
import { Farm } from '@/models/farm';
import { Processor } from '@/models/processor';
export const SupplyChainContext = createContext<{ farms: Farm[], processors: Processor[] }>({ farms: [], processors: [] });