14 lines
335 B
JavaScript
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; |