Add some tools

This commit is contained in:
Florian RICHER 2023-04-02 19:18:14 +02:00
parent 0e29b09650
commit a453ae3326
2 changed files with 131 additions and 33 deletions

View file

@ -1,11 +1,11 @@
import Organization, {Limouzik} from "./Organization";
import Tool, {Symfony, React} from "./Tool";
import Tool, {Symfony, React, Unity3D} from "./Tool";
interface Project {
organization: Organization,
organization: Organization | null,
name: string,
description: string,
tools: Array<Tool>
tools: Tool[]
}
export const SiteWebLimouzik: Project = {
@ -33,5 +33,5 @@ export const LimouzikV4: Project = {
organization: Limouzik,
name: 'Application V4',
description: 'Application V4',
tools: [React]
tools: [Unity3D]
}