small improvements (#4452)

Co-authored-by: Jeremy Letto <jeremy.letto@datasite.com>
This commit is contained in:
Jeremy Letto 2021-10-31 21:21:24 -05:00 committed by GitHub
parent a87c66885c
commit 4cb7240f9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 197 additions and 74 deletions

View file

@ -0,0 +1,9 @@
import { Countries } from "./countries/_Countries";
import { Faces } from "./faces/_Faces";
import Logo from './logo.png';
export class Images {
static Countries = Countries;
static Faces = Faces;
static Logo = Logo;
}

View file

@ -1,7 +0,0 @@
import Countries from "./countries/_Countries";
export class Images {
static Countries = {
...Countries
};
}

View file

@ -3,4 +3,4 @@
# Except gitignore
!.gitignore
!_Countries.tsx
!_Countries.ts

View file

@ -247,7 +247,7 @@ import za from "./za.svg";
import zm from "./zm.svg";
import zw from "./zw.svg";
const Countries = {
export const Countries = {
ad,
ae,
af,
@ -497,5 +497,3 @@ const Countries = {
zm,
zw,
};
export default Countries;

View file

@ -0,0 +1,9 @@
import face1 from './face1.jpg';
import face2 from './face2.jpg';
import face3 from './face3.jpg';
export const Faces = {
face1,
face2,
face3,
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View file

@ -0,0 +1 @@
export * from './Images';