File manager placeholder
This commit is contained in:
parent
1769d191d2
commit
7224cd8db3
2 changed files with 18 additions and 0 deletions
|
@ -0,0 +1,16 @@
|
|||
import React from 'react';
|
||||
import useRouter from 'use-react-router';
|
||||
import queryString from 'query-string';
|
||||
|
||||
export default () => {
|
||||
const { location: { search } } = useRouter();
|
||||
const values = queryString.parse(search);
|
||||
|
||||
return (
|
||||
<div className={'my-10'}>
|
||||
<textarea className={'rounded bg-black h-32 w-full text-neutral-100'}>
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue