1
0
portfolio/src/Pages/Software/Software.js
2023-01-01 12:25:21 +01:00

14 lines
335 B
JavaScript

import React from 'react';
import ContentItem from '../../Content/ContentItem';
import Sidebar from '../../UI/Sidebar';
function Software (){
return (
<div className='row'>
<Sidebar />
<ContentItem title="Welcome to the Software page!"/>
</div>
)
}
export default Software;