Skip to content
Snippets Groups Projects
Commit d5dfcc9d authored by Christophorus Dharma Winata's avatar Christophorus Dharma Winata
Browse files

refactor: contextual file structure

parent a2ed505a
Branches
Tags
No related merge requests found
File moved
import React from "react";
import ReactDOM from 'react-dom/client';
const NavigationBar = () => {
<div>
<div>
<button>
sidebar
</button>
</div>
<div>
<a>
MainMenu
</a>
</div>
<div>
<div>
searchbar
</div>
</div>
<div>
catalog
</div>
<div>
cart
</div>
<div>
account
</div>
</div>
}
export default NavigationBar;
\ No newline at end of file
// import Navbar from '../components/layouts/Navbar' // import NavigationBar from '../../components/NavigationBar'
import React from 'react' import React from 'react'
import AboutPageView from '../../view/AboutPage' import AboutPageView from './view'
const AboutPage = () => { const AboutPage = () => {
return ( return (
// <NavigationBar />
<AboutPageView /> <AboutPageView />
) )
} }
......
import React from 'react'; import React from 'react';
import ReactDOM from 'react-dom/client' import ReactDOM from 'react-dom/client'
import logo from '../../components/images/logo.svg' import logo from '../../../assets/images/logo.svg'
import "../../components/fragments/L2RWipeReveal/L2RWipeReveal.css" import "../../../assets/styles/L2RWipeReveal/L2RWipeReveal.css"
function AboutPageView() { function AboutPageView() {
return ( return (
......
File moved
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment