Add some data
This commit is contained in:
parent
8d641bf598
commit
1825a0ffb7
3 changed files with 218 additions and 0 deletions
37
src/data/Project.ts
Normal file
37
src/data/Project.ts
Normal file
|
@ -0,0 +1,37 @@
|
|||
import Organization, {Limouzik} from "./Organization";
|
||||
import Tool, {Symfony, React} from "./Tool";
|
||||
|
||||
interface Project {
|
||||
organization: Organization,
|
||||
name: string,
|
||||
description: string,
|
||||
tools: Array<Tool>
|
||||
}
|
||||
|
||||
export const SiteWebLimouzik: Project = {
|
||||
organization: Limouzik,
|
||||
name: 'Site web Limouzik',
|
||||
description: 'Site web Limouzik',
|
||||
tools: [Symfony]
|
||||
}
|
||||
|
||||
export const LimouzikV2: Project = {
|
||||
organization: Limouzik,
|
||||
name: 'Application V3',
|
||||
description: 'Application V3',
|
||||
tools: [React]
|
||||
}
|
||||
|
||||
export const LimouzikV3: Project = {
|
||||
organization: Limouzik,
|
||||
name: 'Application V3',
|
||||
description: 'Application V3',
|
||||
tools: [React]
|
||||
}
|
||||
|
||||
export const LimouzikV4: Project = {
|
||||
organization: Limouzik,
|
||||
name: 'Application V4',
|
||||
description: 'Application V4',
|
||||
tools: [React]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue