Add some tools
This commit is contained in:
parent
0e29b09650
commit
a453ae3326
2 changed files with 131 additions and 33 deletions
|
@ -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]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue