Skip to content
This repository was archived by the owner on Jul 29, 2025. It is now read-only.

Commit 15f64c2

Browse files
태재영Matt Goo
authored andcommitted
chore: catalog example (#966)
1 parent beab319 commit 15f64c2

27 files changed

+10365
-55
lines changed

examples/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ A collection of small apps or pages using MDC React components.
55
Example | Link
66
--- | ---
77
Roses | [./roses](./roses)
8+
Catalog | [./catalog](./catalog)

examples/catalog/.gitignore

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
### Linux ###
2+
*~
3+
4+
# temporary files which can be created if a process still has a handle open of a deleted file
5+
.fuse_hidden*
6+
7+
# KDE directory preferences
8+
.directory
9+
10+
# Linux trash folder which might appear on any partition or disk
11+
.Trash-*
12+
13+
# .nfs files are created when an open file is removed but is still being accessed
14+
.nfs*
15+
16+
### macOS ###
17+
# General
18+
.DS_Store
19+
.AppleDouble
20+
.LSOverride
21+
22+
# Icon must end with two \r
23+
Icon
24+
25+
# Thumbnails
26+
._*
27+
28+
# Files that might appear in the root of a volume
29+
.DocumentRevisions-V100
30+
.fseventsd
31+
.Spotlight-V100
32+
.TemporaryItems
33+
.Trashes
34+
.VolumeIcon.icns
35+
.com.apple.timemachine.donotpresent
36+
37+
# Directories potentially created on remote AFP share
38+
.AppleDB
39+
.AppleDesktop
40+
Network Trash Folder
41+
Temporary Items
42+
.apdisk
43+
44+
### Windows ###
45+
# Windows thumbnail cache files
46+
Thumbs.db
47+
ehthumbs.db
48+
ehthumbs_vista.db
49+
50+
# Dump file
51+
*.stackdump
52+
53+
# Folder config file
54+
[Dd]esktop.ini
55+
56+
# Recycle Bin used on file shares
57+
$RECYCLE.BIN/
58+
59+
# Windows Installer files
60+
*.cab
61+
*.msi
62+
*.msix
63+
*.msm
64+
*.msp
65+
66+
# Windows shortcuts
67+
*.lnk
68+
69+
### Custom
70+
dist
71+
node_modules

examples/catalog/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Catalog Example
2+
3+
This is an example that looks like catalog using mdc-react.
4+
5+
## Running example
6+
> starting from root directory (`/material-components-web-react`)
7+
8+
1. `cd ./examples/catalog`
9+
2. `npm i`
10+
3. `npm start`
11+
4. in web browser, head to `localhost:4200`
12+
13+
## Building example
14+
> starting from root directory (`/material-components-web-react`)
15+
16+
1. `cd ./examples/catalog`
17+
2. `npm i`
18+
3. `npm build`
19+
4. then bundle files are in `dist`

0 commit comments

Comments
 (0)