13 lines
203 B
TypeScript
13 lines
203 B
TypeScript
import React from 'react';
|
|
|
|
import adminStyles from './components/styles.module.css';
|
|
|
|
|
|
export default function HomeView(props) {
|
|
return (
|
|
<div>
|
|
< pick something
|
|
</div>
|
|
);
|
|
}
|