Use case started

This commit is contained in:
dev-chiefworks
2022-01-02 22:10:05 -05:00
parent 42e5495f29
commit be5f3ea0f2
11 changed files with 724 additions and 23 deletions
+2
View File
@@ -16,6 +16,7 @@ import HomeOne from './components/HomeOne';
import News from './components/News';
import SingleNews from './components/News/SingleNews';
import Service from './components/Service';
import UseCases from './components/UseCases';
function Routes() {
const [loading, setLoading] = useState(true);
@@ -40,6 +41,7 @@ function Routes() {
<Switch>
<Route exact path="/" component={HomeOne} />
<Route exact path="/news" component={News} />
<Route exact path="/use-cases" component={UseCases} />
<Route exact path="/news/single-news" component={SingleNews} />
<Route exact path="/service" component={Service} />
<Route exact path="/about-us" component={AboutUs} />