-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/update-styles
- Loading branch information
Showing
10 changed files
with
152 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
## Issue Description | ||
[Provide a brief description of the issue] | ||
|
||
## Steps to Reproduce | ||
[Outline the steps required to reproduce the issue] | ||
|
||
## Expected Behavior | ||
[Describe what you expected to happen] | ||
|
||
## Actual Behavior | ||
[Describe what actually happened] | ||
|
||
## Screenshots | ||
[Include any relevant screenshots] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Fixes Issue🛠️ | ||
|
||
<!-- Example: Closes #31 --> | ||
|
||
Closes # | ||
|
||
# Description👨💻 | ||
|
||
<!--Please include a summary of the change and which issue is fixed.List any dependencies that are required for this change.--> | ||
|
||
# Type of change📄 | ||
|
||
<!--Please delete options that are not relevant.--> | ||
|
||
- [] Bug fix (non-breaking change which fixes an issue) | ||
- [] New feature (non-breaking change which adds functionality) | ||
|
||
# How this has been tested✅ | ||
|
||
<!--Please describe the tests that you ran to verify your changes.--> | ||
|
||
# Checklist✅ | ||
|
||
- [] My code follows the style guidelines of this project | ||
- [] I have performed a self-review of my own code | ||
- [] I have commented my code, particularly in hard-to-understand areas | ||
- [] I have added demonstration in the form of GIF/video file | ||
- [] I am an Open Source Contributor | ||
|
||
# Screenshots/GIF📷 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Greetings | ||
|
||
on: [pull_request_target, issues] | ||
|
||
jobs: | ||
greeting: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-message: "Welcome to Capabilix repository.🎊 Thank you so much for taking the time to point this out." | ||
pr-message: "Welcome to Capabilix repository.🎊 Thank you so much for taking the time to point this out." |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
import React from 'react' | ||
import Sidebar from './Sidebar'; | ||
import Feed from './Feed'; | ||
import Widgets from './Widgets'; | ||
import './Dashboard.css'; | ||
import React, { useState } from "react"; | ||
import Sidebar from "./Sidebar"; | ||
import Feed from "./Feed"; | ||
import Widgets from "./Widgets"; | ||
import "./Dashboard.css"; | ||
// import './App.css'; | ||
|
||
|
||
const Home = () => { | ||
const [searchQuery, setSearchQuery] = useState(""); | ||
return ( | ||
<div className="app"> | ||
<Sidebar /> <Feed /> <Widgets /> | ||
<Sidebar /> | ||
<Feed searchQuery={searchQuery} /> | ||
<Widgets searchQuery={searchQuery} setSearchQuery={setSearchQuery} /> | ||
</div> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default Home | ||
export default Home; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters