Skip to content

Commit

Permalink
Add domainsearch index file
Browse files Browse the repository at this point in the history
Fixes #4

Add a new `domainsearch/index.ts` file to the repository.

* **Imports:**
  - Import `DomainSearch` from `components/DomainSearch/DomainSearch`
  - Import `FavoritesList` from `components/DomainSearch/FavoritesList`
  - Import `SearchForm` from `components/DomainSearch/SearchForm`
  - Import `SearchResults` from `components/DomainSearch/SearchResults`
* **Exports:**
  - Export `DomainSearch`, `FavoritesList`, `SearchForm`, and `SearchResults`
* Add `.devcontainer.json` file with build task configuration.
* Add `package-lock.json` file with basic package information.

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/ggindev/domain-pro-check/issues/4?shareId=XXXX-XXXX-XXXX-XXXX).
  • Loading branch information
ggindev committed Oct 20, 2024
1 parent 93348b2 commit e1febcf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"tasks": {
"build": "npm run dev"
}
}
6 changes: 6 additions & 0 deletions domainsearch/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import DomainSearch from '../components/DomainSearch/DomainSearch';
import FavoritesList from '../components/DomainSearch/FavoritesList';
import SearchForm from '../components/DomainSearch/SearchForm';
import SearchResults from '../components/DomainSearch/SearchResults';

export { DomainSearch, FavoritesList, SearchForm, SearchResults };
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e1febcf

Please sign in to comment.